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