﻿// -----------------------------------------------------------------------------
// Work around for Explorer's "Click to activate and use this control"
// -----------------------------------------------------------------------------

// -----------------------------------------------------------------------------
// This file shares the name of the corresponding SWF for easier coding
// -----------------------------------------------------------------------------

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="570" height="293"'
    + 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'
    + 'id="holiday" align="middle">'
    + '<param name="movie" value="FlashBuilds/holiday.swf" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="FlashBuilds/holiday.swf" loop="false" menu="false" quality="high" wmode="transparent" bgcolor="#ffffff" '
    + 'width="570" height="293" name="holiday" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + '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="570" height="293" cellpadding="0" cellspacing="0" border="0"><tr><td align="right" valign="middle" height="293" style="background: url(\'Flashbuilds/holiday.jpg\') no-repeat top"><TABLE width="100%" cellspacing=0 cellpadding=0 class="fLinks"><TR><TD class="fLinksTC"></TD><TD class="fLinksTop"></td></TR><TR><TD class="fLinksLft"></td><TH><a href="residential.aspx"><b>Products For Your Home</b><br>Comfort Systems/Indoor Air Quality</a></TH></TR><TR><TD class="fLinksBC"></TD><TD class="fLinksBtm"></td></TR></TABLE><TABLE width="100%" cellspacing=0 cellpadding=0 class="fLinks"><TR><TD class="fLinksTC"></TD><TD class="fLinksTop"></td></TR><TR><TD class="fLinksLft"></td><TH><a href="commercial.aspx"><b>Commercial Solutions</b><br>Commercial Buildings, Schools, Churches</a></TH></TR><TR><TD class="fLinksBC"></TD><TD class="fLinksBtm"></td></TR></TABLE><TABLE width="100%" cellspacing=0 cellpadding=0 class="fLinks"><TR><TD class="fLinksTC"></TD><TD class="fLinksTop"></td></TR><TR><TD class="fLinksLft"></td><TH><a href="international/"><b>International Sales</b><br>Outside U.S. and Canada</a></TH></TR><TR><TD class="fLinksBC"></TD><TD class="fLinksBtm"></td></TR></TABLE><p>&nbsp;</p></td></tr></table>';
    document.write(alternateContent);  // insert non-flash content
  }