if (isIE && (navigator.appVersion.indexOf("Win") != -1)) {   	document.write("<scr" + "ipt language=\"VBScript\"\> \n"); //FS hide this from IE4.5 Mac by splitting the tag   	document.write("on error resume next \n");   	document.write("MM_FlashCanPlay = ( IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.\" & MM_contentVersion)))\n");   	document.write("</scr" + "ipt\> \n");}	function writeFlashTag(id, src, height, width, align, varStr) {	if (align == null) align = "";	if (varStr == null) varStr = "";	if (isIE) {		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");		document.write(" id=\"" + id + "\" width=\"" + width + "\" height=\"" + height + "\" align=\"" + align + "\">");		document.write(" <param name=\"movie\" value=\"" + src + "\"> <param name=\"quality\" value=\"high\"> ");		document.write(" <param name=\"bgcolor\" value=\"#FFFFFF\"> ");		document.write(" <param name=\"FlashVars\" value=\"" + varStr + "\"> "); 		document.write(" </object>");	} else {		document.write(" <embed src=\"" + src + "\" quality=\"high\" bgcolor=\"#FFFFFF\"  ");		document.write(" swLiveConnect=\"FALSE\" width=\"" + width + "\" height=\"" + height + "\" name=\"" + id + "\"  ");		document.write(" flashvars=\"" + varStr + "\" align=\"" + align + "\"");		document.write(" type=\"application/x-shockwave-flash\">");		document.write(" </embed>");	}}