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

