
//window.onload= Zoomer('./popup.asp', 640, 510)

function Zoomer(t,w,h)
	{
		var target = t;
	
		//----> Fenster Zentrieren
		toppos	= Math.round((screen.height-h)/2);
		leftpos	= Math.round((screen.width-w)/2);
		
		//----> Fenster Aufrufen
		var paras = "screenx=0,screeny=0,top="+ toppos +",left="+ leftpos +",dependent=yes,toolbar=no,width=" + w + ",height=" + h + ",directories=no,status=no,scrollbars=no,resizable=no,menubar=no";
		winInfo=window.open(target,"PopupStart",paras);
		//----> Fensterfocus setzten
		winInfo.focus();
	};


<!--
function Popup(auswahl)
{

switch(auswahl){
	case "01" :window.open("/kda-htmls/kdapopup1.htm","popup1","hotkeys=no,resizable=0,scrollbars=1,height=360,width=420,top=267,left=227");break;
	}
	return false;
}
-->
