<!-- var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);if(hasRightVersion) {  // if we've detected an acceptable version    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'    + 'width="100%" height="408"'    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'    + '<param name="movie" value="images/header.swf?&place='	+ place	+'"  /><param name="quality" value="high" /><param name="salign" value="lt" /><param name="bgcolor" value="#ffffff" />'    + '<embed src="images/header.swf?&place='	+ place	+'"  quality="high" salign="lt" bgcolor="#ffffff" '    + 'width="100%" height="408" name="header" align="left"'    + 'play="true"'    + 'loop="false"'    + '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 = '<img src="images/header'+place+'.jpg" width="1076" height="408" border="0" usemap="#Map">';    document.write(alternateContent);  // insert non-flash content  }// -->