function embedMov(movURL, movWidth, movHeight, autostart, controller, imgURL, objTitle, loop) {
	document.write('<object type="application/x-shockwave-flash" data="'+movURL+'" width="'+movWidth+'" height="'+movHeight+'" title="'+(objTitle ? objTitle : '')+'">');
	document.write('<param name="movie" value="'+movURL+'" />');
	document.write('<param name="autoplay" value="'+autostart+'" />');
	document.write('<param name="controller" value="'+controller+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="transparent" />');
	if (imgURL) {
		document.write('<img src="'+imgURL+'" alt="" width="'+movWidth+'" height="'+movHeight+'" />');
	}
	if (typeof loop == 'boolean') {
		document.write('<param name="loop" value="'+loop+'" />');
	}
	document.write('</object>');
}
