// 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 CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'WIDTH="372" HEIGHT="709"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<PARAM NAME="MOVIE" VALUE="fam_vio_menu.swf">'
    + '<PARAM NAME="PLAY" VALUE="true">'
    + '<PARAM NAME="LOOP" VALUE="false">'
    + '<PARAM NAME="QUALITY" VALUE="high">'
    + '<PARAM NAME="MENU" VALUE="false">'
    + '<EMBED SRC="fam_vio_menu.swf"'
    + 'WIDTH="372" HEIGHT="709"'
    + 'PLAY="true"'
    + 'LOOP="false"'
    + 'QUALITY="high"'
    + 'MENU="false"'
    + 'TYPE="application/x-shockwave-flash"'
    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '<\/EMBED>'
    + '<\/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 = '<table cellpadding="0px" cellspacing="0px" border="0px"><tr><td colspan="2"><a href="index.htm"><img src="images/square_logo.jpg" border="0" /></a></td></tr><tr><td colspan="1"><img src="images/square_clock.jpg" alt="clock_image" width="198" height="172" /></td><td colspan="1"><a href="teen.htm"><img src="images/square_teen.jpg" alt="Information on helping Teens" width="174" height="172" border="0px" /></a></td><tr><td colspan="1"><a href="adult.htm"><img src="images/square_adult.jpg" alt="Information on helping Adults" width="198" height="158" border="0px" /></a></td><td colspan="1"><a href="child.htm"><img src="images/square_child.jpg" alt="Information on helping Children" width="174" height="158" border="0px" /></a></td></tr><tr><td colspan="1"><a href="coworker.htm"><img src="images/square_coworker.jpg" alt="Information on helping Coworkers" width="198" height="211" border="0px" /></a></td><td colspan="1"><a href="elder.htm"><img src="images/square_elder.jpg" alt="Information on helping the Elderly" width="174" height="211" border="0px" /></a></td></tr><tr><td colspan="2"><a href="http://www.macromedia.com/go/getflashplayer/"><img src="images/square_bottom.jpg" alt="just a graphic" width="372" height="72" border="0" /></a></td></tr></table>' 

    document.write(alternateContent);  // insert non-flash content
  }
}

