function InsertMovie(path,autoplay,bgcolor,width,height){
	document.write('<EMBED SRC="');
	document.write(path);
	document.write('" AUTOPLAY="');
	document.write(autoplay);
	document.write('" TARGET="Myself" BGCOLOR="');
	document.write(bgcolor);
	document.write('" WIDTH="');
	document.write(width);
	document.write('" HEIGHT="');
	document.write(height);
	document.write('" SCALE="Aspect" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html" CONTROLLER="True"></EMBED>');
}

function InsertFlash(path,bgcolor,width,height){
	document.write('<OBJECT CLASSID="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" WIDTH="');
	document.write(width);
	document.write('" HEIGHT="');
	document.write(height);
	document.write('">\n');
	document.write('<PARAM NAME="allowScriptAccess" VALUE="sameDomain">\n');
	document.write('<PARAM NAME="movie" VALUE="');
	document.write(path);
	document.write('">\n');
	document.write('<PARAM NAME="quality" VALUE="High">\n');
	document.write('<PARAM NAME="bgcolor" VALUE="');
	document.write(bgcolor);
	document.write('">\n');
	document.write('<PARAM NAME="wmode" VALUE="transparent">\n');
	document.write('<EMBED SRC="');
	document.write(path);
	document.write('" QUALITY="High" BGCOLOR="');
	document.write(bgcolor);
	document.write('" WIDTH="');
	document.write(width);
	document.write('" HEIGHT="');
	document.write(height);
	document.write('" ALLOWSCRIPTACCESS="sameDomain" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>\n');
	document.write('</OBJECT>\n');
}