function InsertMovie(vidname) {
	
	
	document.write('<table class="imgright" style="clear:right; margin-top: 15px; padding:4px; width:320px;"><tr><td>\n');
	
	document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="200" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	
	document.write('<param name="src" value="/vids/');
	document.write(vidname);
	document.write('">\n');
	
	document.write('<param name="autoplay" value="false">\n');

	document.write('<param name="loop" value="false">\n');

	document.write('<param name="controller" value="true">\n');

	document.write('<embed src="/vids/');
	
	document.write(vidname);
	
	document.write('" width="320" height="200" autoplay="false" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>\n');
	
	document.write('</object>\n');
	
	
	document.write('</td></tr></table>\n');
}
