<!-- 
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" '
		+'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" '
		+'width="790" height="350" id="spotlight" align="top">'
		+'<param name="allowScriptAccess" value="sameDomain" />'
		+'<param name="movie" value="spotlight.swf'
		+ myVideo
		+'" />'
		+'<param name="salign" value="lt" />'
		+'<param name="bgcolor" value="#666666" />'
		+'<param name="quality" value="high" />'
		+'<param name="scale" value="noscale" />'
		+'<embed src="spotlight.swf'
		+ myVideo
		+'" quality="high" bgcolor="#666666" scale="noscale" width="790" height="350" id="spotlight" name="videoPlayer" '
		+'align="top" salign="lt" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" '
		+'pluginspage="http://www.macromedia.com/go/getflashplayer" />'
		+'</object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<br><br><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#FFFFFF">This content requires the Macromedia Flash Player.'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a></font><br><br><br><br>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->