// JavaScript Document
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
document.write('<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="960" height="423" id="home_page" align="middle">');
document.write('<param name="movie" value="flash/may.swf" /><param name="quality" value="high" />');
document.write('<param name="movie" value="flash/may.swf" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="bgcolor" value="#ffffff" />');
document.write('<embed src="flash/may.swf" quality="high" bgcolor="#ffffff" width="960" height="423" name="home_page" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('<param name="autoStart" value="-1"></object>');
 } else {  // flash is too old or we can't detect the plugin
    var alternateContent = 'For the past 25 years Easy Gardener has manufactured and distributed some of Americas best known lawn and garden product brands. '
  	+ 'This content requires the Macromedia Flash Player.'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
