// JavaScript Document
function insertmovie(movie, width, height, auto, control)
{
if(control == "true")height += 16;
document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '">\n');
document.write('<param name="src" value="' + movie + '" />\n'); 
document.write('<embed src="' + movie + '" width="' + width + '" height="' + height + '" autoplay="' + auto + '" controller="' + control + '"></embed>\n');
document.write('</object>\n');
}