// Stop IE from displaying the 'click to activate and use this control' with Flash objects
// by embedding them using an external javascript, rather than in-line HTML

function EmbedFlash( strMovieName )
{
	document.write('<center>');
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"');
	document.write(' id="Careers" width="867" height="412">');
	document.write('<param name="movie" value="' + strMovieName + '">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="bgcolor" value="#FFFFFF">');
	document.write('<embed name="FlashContent" src="' + strMovieName + '"');
	document.write(' quality="high" bgcolor="#FFFFFF" swliveconnect="true"');
	document.write(' width="867" height="412"');
	document.write(' type="application/x-shockwave-flash"');
	document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object>');
	document.write('</center>');
}
