<!-- 
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {  // if we've detected an acceptable version
var oeTags = '<!-- ************** FLASH ************** -->'
+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="781" height="247">'
      + '<param name="movie" value="flash/home.swf">'
      + '<param name="quality" value="high">'
      + '<embed src="flash/home.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="781" height="247"></embed>'
    + '</object>';
          document.write(oeTags); // embed the Flash Content SWF when all tests are passed
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<!-- ************** NO FLASH ************** -->'
  + '<table width="781" cellpadding="0" cellspacing="0" border="0" summary="Logo & Tagline">'
    + '<tr>'
      + '<td align="left" valign="top" width="781"><img src="images/home/layout/leftbg.gif" width="62" height="119"><img src="images/home/layout/logo.gif" alt="The Berndt Group" width="199" height="119" hspace="0" vspace="0"><img src="images/home/layout/tagline.jpg" alt="A leading Web development &amp; brand communications from since 1991." width="452" height="119" hspace="0" vspace="0"></td>'
    + '</tr>'
  + '</table>'
  + '<table width="781" cellpadding="0" cellspacing="0" border="0" summary="Get Flash">'
    + '<tr>'
      + '<td align="left" valign="top" width="28" height="127"><img src="images/home/layout/leftmrgn.gif" width="28" height="128" /></td>'
      + '<td align="left" valign="top" width="155" height="127"><img src="images/home/layout/getflash.gif" alt="Looks Like You Need Flash!  Get Macromedia Player" width="409" height="128" border="0" usemap="#getflash"></td>'
      + '<td align="left" valign="top" width="604" height="127"><img src="images/home/layout/getflash_image.jpg" width="344" height="128" name="colorChange" id="colorChange"></td>'
    + '</tr>'
  + '</table>'
      + '<div id="homeflash" class="home">'
        + '<a href="http://www.macromedia.com/go/getflashplayer" target="tbg">Get Macromedia Flash Player &#8250;</a>'
          + '<a href="sitemap.html">OR skip to site map &#8250;</a>'
      + '</div>'
+ '<!-- end ************** NO FLASH ************** -->';
	document.write(alternateContent);  // insert non-flash content
}
// -->