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="100%" height="100%" id="index" align="middle">'
+'<param name="allowScriptAccess" value="sameDomain" />'
+'<param name="movie" value="flash/intro2.swf" />'
+'<param name="quality" value="high" />'
+'<param name="bgcolor" value="#000000" />'
+'<embed src="flash/intro2.swf" quality="high" bgcolor="#000000" width="100%" height="100%" name="index" align="middle" 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 = '<p><br><table width="775" border="0" cellspacing="1" cellpadding="0" align="center" height="430" bgcolor="#666666">'
  +'<tr><td bgcolor="#FFFFFF">'
      +'<table width="700" border="0" cellspacing="0" cellpadding="0" align="center" height="174">'
        +'<tr><td width="422"><img src="logo.jpg" width="422" height="390"></td>'
         +' <td> <blockquote> '
            +' <p><font face="Verdana"><b>Welcome to our website.<br>'
                +'</b></font><font face="Verdana" size="2"><font color="#660000"> '
                +'<b><font color="#CC0000"><br>'
                +'It apperas your browser doesnot have the latest version of</font></b></font> '
                +'<a href="http://www.macromedia.com/go/getflash/" target="_blank">Flash</a>, this '
                +'site requires the <a href="http://www.macromedia.com/go/getflash/" target="_blank">FLASH '
               +' 8</a> player to display properly.</font></p>'
              +'<p><font face="Verdana" size="2">Click on <a href="http://www.macromedia.com/go/getflash/" target="_blank">here</a> '
                +'to download the latest flash player. </font></p>'
              +'<p><font face="Verdana" size="2">The installation is free and takes '
                +'only a few seconds. You will only have to download it once. Once '
                +'flash is installed, refresh this page to see the results.</font></p>'
              +'<p><font face="Verdana" size="2">Thank you for your patience.</font></p>'
            +'</blockquote></td></tr></table></td></tr></table>';
    document.write(alternateContent);  // insert non-flash content
  }

