// JavaScript Document

function InsertSampleMovie(s)
{
  document.write('<object id="qt1" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="300" height="300" style="height:300px; left: 0px; position: relative; top: 0px; width: 300px; z-index: 1; ">\n');
		
  document.write('<param name="src" value="'+s+'" />\n');

  document.write('<param name="controller" value="true" />\n');
		 document.write('<param name="autoplay" value="true" />');
		 document.write('<param name="scale" value="tofit" />');
		 document.write('<param name="volume" value="100" />');
		 document.write('<param name="loop" value="false" />');
		 document.write('<embed pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" class="mov" width="300" height="300" src="'+s+'" controller="true" autoplay="false" scale="tofit" volume="100" loop="false">');
		 document.write('</embed>');
		
  document.write('</object>\n');
}
