hi,
I upload a short "avi" film to my website so that my visitiors could watch it but there is something wrong with the following script...could anyone fix it for me..or is there any other javascript for that...?

Thanks
----------------
<html>
<head>
</head>

<body bgcolor=dark blue>

<script language="javascript">
function filimizle()
{
var div;
div=document.getElementById('Moviediv');

div.innerHTML='<embed src="filimkosu.avi" width="250" height="250" autostart=true hidden="false" />';

}
</script>

<form>
<div width=250 height=250 id="Moviediv"></div>

<input type=button style=background:blue;color:yellow;font-size:20; value="izle/watch" onClick="filimizle()"><br><br>
<input type=button style=background:black;color:yellow;font-size:16; value="kapat/stop" onClick="window.location.reload()">
</form>
</body>
</html>