function preload(quelle) { 
	Bild=new Image();
	Bild.src=quelle;
}

function popup() {
	var PopBild=Bild
	var Breite=PopBild.width;
	var Hoehe=PopBild.height;
	if (Breite==false || Hoehe==false) {
		window.setTimeout ('popup()', 100); 
	}
	else {
		var Parameter="width=" + Breite + ", height=" + Hoehe + ", resizable=yes";
		var win=window.open ("","pop",Parameter);
		win.window.focus ();
		win.document.open ();
		win.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
		win.document.write ('<html xmlns="http://www.w3.org/1999/xhtml">');
		win.document.write ('<head>');
		win.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
		win.document.write ('<title>Bl&auml;ck F&ouml;&ouml;ss</title>');
		win.document.write ('<style type="text/css"><!-- body { background-color: #000; margin: 0px; border-width: 0px; padding: 0px; } --></style>');
		win.document.write ('</head>');	
		win.document.write ('<body onBlur="self.close()">');
		win.document.write ('<img src="' + PopBild.src + '" width="' + PopBild.width + '" height="' + PopBild.height + '"/>');
		win.document.write ('</body>');
		win.document.write ('</html>');
		win.document.close ();
	}
}