// In this section we set up the content to be placed dynamically on the page.
// Customize movie tags and alternate html content below.

if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object id="products" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" height="400" width="570" align="middle" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="sameDomain" name="allowScriptAccess" /><param value="products.swf" name="movie" /><param value="false" name="menu" /><param value="high" name="quality" /><param value="#ffffff" name="bgcolor" /><embed src="products.swf" menu="false" quality="high" bgcolor="#ffffff" width="570" height="400" name="products" align="middle" 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
    // NOTE: height, width are required!
    var alternateContent = '<map name="products">' +
'<area href="index.php?main_page=index&amp;cPath=1" shape="rect" coords="9, 2, 158, 30">' +
'<area href="index.php?main_page=index&amp;cPath=2" shape="rect" coords="10, 41, 157, 66">' +
'<area href="index.php?main_page=index&amp;cPath=3" shape="rect" coords="11, 75, 157, 103">' +
'<area href="index.php?main_page=index&amp;cPath=4" shape="rect" coords="10, 113, 156, 138">' +
'<area href="index.php?main_page=index&amp;cPath=5" shape="rect" coords="9, 149, 158, 174">' +
'<area href="index.php?main_page=index&amp;cPath=6" shape="rect" coords="9, 184, 158, 212">' +
'<area href="index.php?main_page=index&amp;cPath=7" shape="rect" coords="11, 220, 156, 246">' +
'<area href="index.php?main_page=index&amp;cPath=32" shape="rect" coords="11, 257, 157, 281">' +
'<area href="index.php?main_page=index&amp;cPath=33" shape="rect" coords="9, 292, 158, 319">' +
'<area href="index.php?main_page=index&amp;cPath=10" shape="rect" coords="10, 328, 158, 353"></map>' +
'<img border="0" src="images/products.jpg" usemap="#products" width="582" height="377">';

    document.write(alternateContent);  // insert non-flash content
  }
}