So ich hab jetzt das Script geändert. Leider geht es trotzdem nicht :(.
Gruß
Hans
-------------------------------
<script language="javascript">
<!--
var hoehe, breite;
if (self.innerHeight){
hoehe = self.innerHeight -50;
}
else if(document.documentElement && document.documentElement.clientHeight)
{
hoehe = document.documentElement.clientHeight - 50;
}
else if(document.body)
{
hoehe = document.body.clientHeight -50;
}
breite = Math.round(hoehe * 1.2);
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='"
+ breite + "' height='" + hoehe + "'>"
+ "<param name='movie' value='intro.swf' />"
+ "<param name='quality' value='high' />"
+ "<embed src='intro.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'"
+ "width='" + breite + "' height='" + hoehe +"'>"
+ "</embed>"
+ "</object>");
</script>