Need some help

I’m looking for a code to put in an html page that will launch a flash movie (in it’s own window) as soon as the html page is loaded.

Can anyone help me out?

Thanks

<head>
<script type="text/javascript">
<!--
closetime=0;

function Start(URL){
windowprops="directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width=300,height=300,left=25,screenX=25,top=25,screenY=25";
preview=window.open(URL,"popWin",windowprops);
if (closetime) setTimeout("preview.close();", closetime*1000);
}

function popupWin(){
url="type your flash movies' url HERE"
delay=0;
timer = setTimeout("Start(url)", delay*1000);
window.status="";
}
//-->
</script>
</head>
<body onLoad="popupWin();">
</body>

Nice one.

:blush: