﻿
// 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
	// embed the Flash Content SWF when all tests are passed   
    var alternateContent = '<div style="z-index: 0; margin-left: auto; text-align: center; margin-right: auto; margin-top: 20px;">'
    + '<object>'
    + '<param name="movie" value="images/snitzintro.swf" />'
    + '<param name="wmode" value="opaque" />'
    + '<embed src="images/snitzintro.swf" wmode="opaque" width="700" height="400">'
    + '</embed></object></div>'
    + '<div id="whysnitztablewrapper">'
    + '<!--<h1>Why Snitz Creek?</h1>-->'
    + '<table border="0" cellpadding="4" cellspacing="0" id="whysnitztable">'
    + '<tr class="rowodd">'
    + '<td><h3>FREE Estimates - FREE Design - No Hassle Sales - Customer Service - Eco-Friendly</h3></td>'
    + '</tr>'
    + '<tr>'
    + '<td>We do our part to practice conservation by recylcing waste. &nbsp; '
    + '<a href="Green.aspx" style="color: #7591E3;">more info</a></td>'
    + '</tr>'
    + '</table>'
    + '</div>'
    + '<div id="primertext">'
    + '<p>Please browse our site and check out our <a style="color: #7591E3;" href="CabinetryGallery.aspx">'
    + 'photo gallery</a> to get familiar with some of the styles we offer.&nbsp; Don&#39;t '
    + 'see exactly what you want? &nbsp; That&#39;s not a problem.  &nbsp; Our custom cabinet '
    + 'making facility can recreate virtually any style of cabinetry that you want.&nbsp; '
    + '<a href="DesignProcess.aspx" style="color: #7591E3;">Click here</a> to learn more about our design process.'
    + '&nbsp; </p>'
    + '<p>Ready to get started with your project? &nbsp; Have any questions? &nbsp; <a href="ContactUs.aspx" style="color: #7591E3;">'
    + 'Contact us</a> using the information here.</p>'
    + '</div>'
    + '<div style="text-decoration: none; margin-bottom: 20px;"><a href="Green.aspx"><img style="border: none;" src="Images/snitzgoesgreen.png" alt="Snitz Creek Cabinet Shop Goes Green" /></a></div>';
    document.write(alternateContent);
} 

else {  // flash is too old or we can't detect the plugin
//this is where i add my image...
    var alternateContent = '<div style="z-index: 1; margin-left: auto; text-align: center; margin-right: auto; margin-top: 20px;">'
    + '<img src="images/mainscreen_no_flash.png" alt="Snitz Creek Cabinet Shop.  Quality custom cabinetry for your kitchen, bath and entertainment areas.  Enjoy elegance in your home.  From concept to completion, from traditional to contemporary, our designers bring your dreams to reality." />'
    + '</div>'
    + '<p style="color: White; text-align: left; padding-left: 50px; font-size: medium; padding-right: 50px;">'
    + 'For four decades, our family has continued the tradition of designing and manufacturing fine custom cabinetry.'
    + '&nbsp;The commitment to our customers combined with exceptional quality defines Snitz Creek as the best choice in'
    + 'cabinetry for your home. &nbsp; We continually build the finest kitchen, bath and entertainment cabinets in a '
    + 'seemingly endless variety of styles and finishes. &nbsp;We have worked with hotel designers to build custom'
    + 'furniture for elegant hotel rooms.  We also do commercial display cabinets that will help you increase your'
    + 'sales.'
    + '</p><p style="color: White; text-align: left; padding-left: 50px; font-size: medium; padding-right: 50px;">'
    + 'Our designers teamed with our skilled craftsmen '
    + 'will fulfill your dreams, whether your taste ranges from contemporary to traditional.  '
    + 'We select from local and exotic hardwoods and enhance nature’s beauty with an unlimited '
    + 'array of finishes.  Visit us at SnitzCreek.com or at our showroom Monday through Friday 8–5 '
    + 'and Saturday’s by appointment.</p>'
    + '<div id="whysnitztablewrapper">'
    + '<!--<h1>Why Snitz Creek?</h1>-->'
    + '<table border="0" cellpadding="4" cellspacing="0" id="whysnitztable">'
    + '<tr class="rowodd">'
    + '<td><h3>FREE Estimates - FREE Design - No Hassle Sales - Customer Service - Eco-Friendly</h3></td>'
    + '</tr>'
    + '<tr>'
    + '<td>We do our part to practice conservation by recylcing waste. &nbsp; '
    + '<a href="Green.aspx" style="color: #7591E3;">more info</a></td>'
    + '</tr>'
    + '</table>'
    + '</div>'
    + '<div id="primertext">'
    + '<p>Please browse our site and check out our <a style="color: #DD9900;" href="CabinetryGallery.aspx">'
    + 'photo gallery</a> to get familiar with some of the styles we offer.&nbsp; Don&#39;t '
    + 'see exactly what you want? &nbsp; That&#39;s not a problem. &nbsp; Our custom cabinet '
    + 'making facility can recreate virtually any style of cabinetry that you want. &nbsp; '
    + '<a href="DesignProcess.aspx" style="color: #7591E3;">Click here</a> to learn more about our design process.'
    + '&nbsp; </p>'
    + '<p>Ready to get started with your project? &nbsp; Have any questions? &nbsp; <a href="ContactUs.aspx" style="color: #7591E3;">'
    + 'Contact us</a> using the information here.</p>'
    + '</div>'
    + '<div style="text-decoration: none; margin-bottom: 20px;"><a href="Green.aspx"><img style="border: none;" src="Images/snitzgoesgreen.png" alt="Snitz Creek Cabinet Shop Goes Green" /></a></div>';
    document.write(alternateContent);
}


