<!--- Hide script from old browsers
// SWF IN NEUEM ZENTRIERTEN FENSTER ÖFFNEN
//
function openSWFWindow(Datei, Breit, Hoch)
{

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(Breit/2);
ypos = (ScreenHeight/2)-(Hoch/2);

neuesFenster=window.open("","Datei", "width="+Breit+",height="+Hoch+",left="+xpos+",top="+ypos);
neuesFenster.document.open();
neuesFenster.document.write('<html></head><title>Schreib mal wieder...</title><meta http-equiv="imagetoolbar" content="no"></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()" onClick="self.close()">');  
neuesFenster.document.write('<table width='+Breit+' border="0" cellspacing="0" cellpadding="0" align="center" height='+Hoch+' ><tr><td>');
neuesFenster.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+Breit+'" height="'+Hoch+'"><param name="movie" value="'+Datei+'"><param name="quality" value="high"><embed src="'+Datei+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+Breit+'" height="'+Hoch+'"></embed></object>'); 
neuesFenster.document.write('</td></tr></table></body></html>');
neuesFenster.document.close();
neuesFenster.focus();
}
// end hiding from old browsers -->