function popFenster(url) {
	var breite = 700;
    var hoehe= 500;
	var einstellungen = 'width=750,height=600,screenX=200,screenY=100,left=200,top=100,toolbar=no,status=no,resizable=yes,scrollbars=no,location=no,menubar=no,directories=no';
    var fenster = window.open(url, 'fenster', einstellungen);
    if (fenster) return false;
    else return true;
}

<!--
function popSelfsize(anyImage,anyWindow,x,y,titel)
{
	var anyImagePlus = '<img src='+anyImage+' width='+x+' height='+y+' hspace=0 vspace=0 border=0>';
	newwin = window.open('','fenster','width=700,height=500,innerwidth=700,innerheight=500,screenX=200,screenY=100,left=200,top=100,toolbar=no,status=no,resizable=no,scrollbars=no,location=no,menubar=no,directories=no');

//  Hier wird die Popup-Datei "on the fly" erzeugt. Titel, Position und margins koennen angepasst werden.
	newwin.focus();
	newwin.document.writeln('<html><head><title>'+titel+'</title></head>');
	newwin.document.writeln('<body bgcolor=#CC9900>');
	newwin.document.writeln('<table height=100% width=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center>');
	newwin.document.writeln(anyImagePlus);
	newwin.document.writeln('</td></tr><tr><td align=center valign=bottom><a href=javascript:self.close();><img src=../images/fenster_close.jpg width=134 height=12 border=0></a></td></tr></table></body></html>');

}
//
-->
