// 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 paramStr = '?image=' + image;
	if (section != "" && section != "undefined") {
		paramStr = paramStr + '&section=' + section;
	}
	if (page != "" && page != "undefined") {
		paramStr = paramStr + '&page=' + page;
	}
	if (bar != "" && bar != "undefined") {
		paramStr = paramStr + '&bar=' + bar;
	}
  
    var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'
    + 'width="500" '
    + 'height="220">'
    + '<param name="movie" value="/base.swf' + paramStr + '"> '
    + '<param name="loop" value="false"> '
    + '<param name="menu" value="false"> '
    + '<param name="quality" value="high"> '
    + '<param name="scale" value="noscale"> '
    + '<param name="salign" value="lt"> '
    + '<param name="bgcolor" value="#fff"> '
    + '<embed src="/base.swf' + paramStr + '" '
    + 'loop="false" '
    + 'menu="false"'
    + 'quality="high" '
    + 'scale="noscale"'
    + 'salign="lt" '
    + 'bgcolor="#fff"  '
    + 'width="500"'
    + 'height="220" '
    + 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/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 = '<div id="nav"><ul><li class="overview"><a href="/mtgplanners/index.html">MEETING PLANNERS</a></li><li><a href="/site/do/mtgplanner/guideline/list">GUIDELINES</a></li><li><a href="/mtgplanners/floorplans/index.shtml">FLOOR PLANS</a></li><li><a href="/mtgplanners/facsvcs/audiovisual.shtml">MOSCONE SERVICES</a></li><li><a href="/mtgplanners/catering/index.shtml">CATERING</a></li><li><a href="/site/do/graphic/list">BROCHURE ART</a></li><li><a href="/mtgplanners/faq/index.html">FAQ</a></li></ul><ul><li class="overview"><a href="/contractors/index.html">CONTRACTORS</a></li><li><a href="/contractors/floorplans/index.shtml">FLOOR PLANS</a></li><li><a href="/site/do/contractor/guideline/list">GUIDELINES</a></li><li><a href="/contractors/facsvcs/theatrical.shtml">MOSCONE SERVICES</a></li><li><a href="/contractors/faq/index.html">FAQ</a></li></ul><ul><li class="overview"><a href="/attendees/index.html">ATTENDEES</a></li><li><a href="/attendees/directions/index.shtml">DIRECTIONS</a></li><li><a href="/attendees/hotels.html">HOTELS</a></li><li><a href="/attendees/weather.html">WEATHER</a></li><li><a href="/attendees/faq/index.html">FAQ</a></li></ul><ul><li class="overview"><a href="/community/index.html">COMMUNITY</a></li><li><a href="/site/do/benefit/list">BENEFIT / GIVING</a></li><li><a href="/community/sustain.html">SUSTAINABILITY</a></li><li><a href="/community/employment.html">EMPLOYMENT</a></li><li><a href="/community/disclosures.html">DISCLOSURES</a></li></ul></div>';

    document.write(alternateContent);  // insert non-flash content
  }
}

