function embedMov(movURL, movWidth, movHeight, autostart, controller) {
    document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" width="'+movWidth+'" height="'+movHeight+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0">');
    document.write('<param name="movie" value="'+movURL+'" />');
    document.write('<param name="autoplay" value="'+autostart+'" />');
    document.write('<param name="controller" value="'+controller+'" />');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="wmode" value="transparent" />');
    document.write('<embed wmode="transparent" quality="high" src="'+movURL+'" width="'+movWidth+'" height="'+movHeight+'" autoplay="'+autostart+'" controller="'+controller+'" pluginspage="http://www.macromedia.com/go/getflashplayer">');
    document.write('</embed>');
    document.write('</object>');
}