function insertmovie($filename,$aspect,$options) { scroll(0,0); //scroll back to top of page // www.geekpedia.com/code100_Get-window-width-and-height.html var x=0; if (self.innerHeight) // all except Explorer { x=self.innerWidth; } else if (document.documentElement && document.documentElement.clientHeight) //Explorer 6 strict mode { x=document.documentElement.clientWidth; } else if (document.body) // other Explorers { x=document.body.clientWidth; } $width= 0.98*x; var y = 0; if (self.innerHeight) { y = self.innerHeight; } else if (document.documentElement && document.documentElement.clientHeight) { y = document.documentElement.clientHeight; } else if (document.body) { y = document.body.clientHeight; } if ($width*$aspect > y - 72) { $width=(y-72)/$aspect; } //insert movie by G. Lisensky var $code = ''; // alert($code); document.getElementById('imageframe').innerHTML = $code; }