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="100%"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="placeholder.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="placeholder.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" '
    + 'width="100%" height="100%" name="MoroseMediaPlaceHolder" align="top"'
    + '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 = '<style type="text/css">body {  padding: 0px;  margin: 0px;    color: #000066;  font-family: Georgia;  font-size: 20px;}a, a:visited, a:link, a:hover, a:active {  color: #000066;  text-decoration: underline;  font-size: 16px;}#main {  position: relative;  margin-left: auto;  margin-right: auto;  width: 630px;}#getflash {  text-align: center;}#background {  position: relative;  width: 630px;  height: 430px;  background-image: url(\'placeholder-noflash-bg.jpg\');}#line1 {  position: absolute;  left: 0px;  top: 30px;  width: 630px;  text-align: center;}#line2 {  position: absolute;  left: 0px;  top: 55px;  width: 630px;  text-align: center;}#click {  position: absolute;  left: 0px;  top: 80px;  width: 630px;  height: 350px;  cursor: pointer;}</style><center>  <div id="main">    <div id="getflash">    	<a href="http://www.macromedia.com/go/getflash/">Get the latest Flash, for the best experience</a>  	</div>  	<div id="background">	    <div id="line1">Morose Media presents TheBizz...</div>    	<div id="line2"><b>Launch date TBA</b></div>    	<a href="http://www.morose.nl/"><div id="click"></div></a>  	</a>	</div></center>';
    document.write(alternateContent);
  }
