// Microsoft Internet Explorer fix for displaying active content 
function RunFlashAct(swfurl,swfclassid,swfwidth,swfheight,swfloop,swfversion)
{
    document.write('<object classid="clsid:' + swfclassid + '" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#' + swfversion + '" width="' + swfwidth + '" height="' + swfheight + '">\n');
    document.write('<param name="movie" value="' + swfurl + '" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="LOOP" value="' + swfloop + '" />\n');
    document.write('<embed src="' + swfurl + '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + swfwidth + '" height="' + swfheight + '" loop="' + swfloop + '">\n');
}
