function embedMov(movURL, movWidth, movHeight, autostart, controller, imgURL)
{
	document.write('<a href="'+eXp.PATH_RELATIVE+'" class="farol_link">');
	document.write('<object type="application/x-shockwave-flash" data="'+movURL+'" width="'+movWidth+'" height="'+movHeight+'">');
	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+'" width="'+movWidth+'" height="'+movHeight+'" border="0" alt="" />');
	}
	document.write('</object>');
	document.write('</a>');
}

