// JavaScript Document

<!-- 
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="891" height="172"'
    + 'codebase="https://www.landtasia.com/site/swflash.cab">'
    + '<param name="movie" value="recipe.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="wmode" value="transparent"><param name="menu" value="false">'
    + '<embed src="recipe.swf" quality="high" bgcolor="#ffffff" '
    + 'width="891" height="172" name="community" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" menu="false">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<img src="_lib/img/header_healthycommunity.jpg" alt="A Healthy Community" width="891" height="172" border="0" usemap="#Map" /><map name="Map" id="Map"><area shape="rect" coords="22,16,303,152" href="index.html" alt="Landtasia Organic Foods Pty Ltd" /></map>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
