function insertMovie(path,x,y)
{
document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="'+y+'" width="'+x+'">');
document.write('<param name="src" value='+path+'');
document.write('<param name="autoplay" value="false">');
document.write('<param name="type" value="video/quicktime" height="256" width="320">');
document.write('<param name="controller" value="true">');
document.write('<embed src="'+path+'" height="'+y+'" width="'+x+'" autoplay="false" controller="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">');
document.write('</object>');
}