/* Print-PopUp */

/* Attributes for PopUp */
var attribPopUpPrint="location=no,menubar=no,toolbar=no,status=yes";
attribPopUpPrint+=",resizable=yes,scrollbars=yes,width=595,height=768";


/* init variables, which later point to the window object */
var subwindow=0;

/* This function closes  (if open) the popup window */
function ClosePopUp()
{
	if (!subwindow)          /* if not jet opened */
		return;                /* cancel */
	if (subwindow.closed)    /* if already closed */
		return;                /* cancel */
	subwindow.close();       /* close */
}

function PopUpPrint()
{
	ClosePopUp()             /* close, if already opened */

	/* CE_print.html open with name "popup" and remenber window object */
	subwindow=window.open("../hdi-gerling/CE_print.html","popup",attribPopUpPrint);

	/* move window to left top */
	subwindow.moveTo(10,50);
}