
// *********************************************************
// *	basic scripts for EKH
// *	donīt modify these file
// *********************************************************

function NewWindow (winname,wintitel,breite,hoehe) {
	var breite = 750;					// global override
	var hoehe  = 500;					// global override
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	NewWin = window.open(winname, wintitel, "width="+breite+",height="+hoehe+",top="+oben+",left="+links+",toolbar=0,location=0");
}
