//function to insert movies into page
function InsertMovie(file)
{
	document.write('<object classid="clsid: 02BF25D5..." ...>\n');
	document.write('<param name="src" value="' + file + '" />\n');
	document.write('<EMBED SRC="' + file + '" WIDTH="520" HEIGHT="300" AUTOPLAY="true" CONTROLLER="false" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
	document.write('</object>\n');
}