<!-- 

if (hasRightVersion)
{  // if we've detected an acceptable version
	var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
		+ 'width="800" height="420" '
		+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="calculatorB">'
		+ '<param name="movie" value="swf/citiplanA.swf" />'
		+ '<param name="loop" value="false" />'
		+ '<param name="menu" value="false" />'
		+ '<param name="quality" value="high" />'
		+ '<param name="scale" value="noscale" />'
		+ '<param name="wmode" value="transparent" />'
		+ '<embed src="swf/citiplanA.swf" loop="true" menu="false" quality="high" scale="noscale" wmode="transparent" '
		+ 'width="800" height="420" name="calculatorB" id="calculatorB" align="left" '
		+ 'play="true" '
		+ 'loop="true" '
		+ 'quality="high" '
		+ 'allowScriptAccess="sameDomain" '
		+ 'type="application/x-shockwave-flash" '
		+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
		+ '<\/embed>'
		+ '<\/object>';
	document.write(oeTags);   // embed the flash movie
}
else
{  // flash is too old or we can't detect the plugin
	var alternateContent = '<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">'
		+ '<tr><td align="left">'
		+ '<table border="0" cellpadding="0" cellspacing="0">'
		+ '<td width="108" align="right" valign="top"><a href="http://www.macromedia.com/go/getflash/" target="_blank"><img src="images/get_flash_player.gif" width="88" height="31" border="0" vspace="1" ></a></td>'
		+ '<td valign="top"><p style="font-size:11px; line-height:16px; width:300px; margin-left:10px; color: #FFFFFF">This website requires Macromedia Flash Player.<br><a href="http://www.macromedia.com/go/getflash/" style="font-size:11px; text-decoration: underline; font-weight:bold; color: #FFFFFF" ">Please click here to install</a></p></td></tr></table>'
		+ '</td></tr></table>';
	document.write(alternateContent);  // insert non-flash content
}

// -->










