<!-- 
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=7,0,0,0" width="800" height="330" id="random_unique_images" align="middle">'
    + '<param name="allowScriptAccess" value="sameDomain" />'
    + '<param name="movie" value="random_unique_images.swf" />'
    + '<param name="quality" value="high" />'
    + '<param name="wmode" value="transparent" />'
    + '<param name="bgcolor" value="#ffffff" />'
    + '<embed src="random_unique_images.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="800" height="330" name="random_unique_images" align="middle" 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 = '<table width="800" height="330" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td>'
	+ '<p align="center">This portion of the site requires Flash.<br /><a href="http://www.macromedia.com/go/getflash/">Click here to get Flash.</a>'
	+ '</td></tr></table>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
