<!--
function popSelfsize(anyImage,anyWindow,x,y)
{
	var anyImagePlus = '<img src='+anyImage+' width='+x+' height='+y+' hspace=0 vspace=0 border=0>';
	newwin = window.open('',anyWindow,'width='+x+',height='+y+',innerwidth='+x+',innerheight='+y+',screenX=10,screenY=10,left=10,top=10,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>'+anyWindow+'</title></head>');
	newwin.document.writeln('<body bgcolor=#ffffff leftmargin=0 bottommargin=0 topmargin=0 marginheight=0 marginwidth=0>');
	newwin.document.writeln(anyImagePlus);
	newwin.document.writeln('</body></html>');
}
//-->
