<!--
var win1;

function popup(url,breite,hoehe) {
if (win1) {win1.close();}
// Popup zentriert zu platzieren
xPosition = screen.availWidth/2-breite;
yPosition = screen.availHeight/2-hoehe/2;
if(BrowserDetect.browser=="Explorer" && BrowserDetect.version=="7" && BrowserDetect.OS=="Windows")
{
	yPosition = screen.availHeight/2-(hoehe+52)/2;
}
if(hoehe <= screen.availHeight-32)
{
	win1=window.open(url,"popup","width="+breite+",height="+hoehe+",left="+xPosition+",top="+yPosition+",status=no,directories=no,scrollbars=no,resizable=no");
}
if(hoehe > screen.availHeight-32)
{
	breite = breite+18;
	win1=window.open(url,"popup","width="+breite+",height="+hoehe+",left="+xPosition+",top="+yPosition+",status=no,directories=no,scrollbars=yes,resizable=no");
}
win1.focus();
}
function leave() {
if (win1) {win1.close();}
}
//-->
