<!--



/*  popup-fenster  */



function popup(path,w,h)
{


win = window.open(''+path+'','','toolbar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1,width='+w+',height='+h);

}


function popupblank(path,w,h)
{
	x =((screen.width - w)/2);
	y = ((screen.height - h)/2);

win = window.open(''+path+'','','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width='+w+',height='+h+',left='+x+',top='+y);

}

function popupscroll(path,w,h)
{
	x =((screen.width - w)/2);
	y = ((screen.height - h)/2);

win = window.open(''+path+'','','toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0,width='+w+',height='+h+',left='+x+',top='+y);

}
//-->