<!-- 
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
//var winPfad = "";
var ext = ".html";
var fName = "PopUpWindow"
var popUp = 0;
var popUpWin = 0;

function popUpWindow(URLStr, left, top, width, height)
{
	if(popUpWin)
	{
    	if(!popUpWin.closed) popUpWin.close();
  	}
	//alert("dieURL ist: " + URLStr);
  popUpWin  = window.open( URLStr + ext, target=fName, "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width="+width+", height="+height+", left="+left+", top="+top+", screenX="+left+", screenY="+top);
	popUpWin.focus();
}
-->