
<!--

	var MM_contentVersion = 6;
	var d = document;
	var MM_FlashCanPlay, altImg, altUrl, altTarget;
	var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	if ( plugin ) {
			var words = navigator.plugins["Shockwave Flash"].description.split(" ");
				for (var i = 0; i < words.length; ++i)
				{
			if (isNaN(parseInt(words[i])))
			continue;
			var MM_PluginVersion = words[i];
				}
		MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
	}
	else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
		 && (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');
	}
	
	//MM_FlashCanPlay = false;
	if ( MM_FlashCanPlay ) {
		
		d.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");
		d.write(" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"");
		d.write(" WIDTH=\""+mWidth+"\" HEIGHT=\""+mHeight+"\" id=\""+mName+"\" ALIGN=\"\">");
		d.write(" <PARAM NAME=movie VALUE=\""+mMovie+"\"> ");
		d.write(" <PARAM NAME=quality VALUE=high> ");
		d.write(" <PARAM NAME=allowScriptAccess VALUE=always> ");
		//d.write(" <PARAM NAME=bgcolor VALUE="+mBG+"> ");
		d.write(" <PARAM NAME=bgcolor VALUE="+mBG+"> ");
		//d.write(" <param name=WMode value=Transparent> ");
		d.write(" <EMBED src=\""+mMovie+"\" quality=high bgcolor="+mBG+"  allowScriptAccess=always WIDTH=\""+mWidth+"\" HEIGHT=\""+mHeight+"\" NAME=\""+mName+"\" ALIGN=\"\" ");
		d.write(" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\">");
		d.write(" </EMBED>");
		d.write("</OBJECT>");
	} else{
		if (altImg){
			var img = "<IMG SRC='"+altImg+"' width='"+mWidth+"' height='"+mHeight+"' border=0>";
			var target = " ";
			if (altTarget)
				target = " target='"+target+"' ";
			if (altUrl )
				d.write ("<a href='"+altUrl+"' "+target+">"+img+"</a>");
			else
				d.write (img);
			
		}
	}
	
	altImg = "";
	altUrl = "";

//-->