// 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="718" HEIGHT="70"'
		+ 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<PARAM NAME="MOVIE" VALUE="/flash/junk_ball_nav.swf">'
		+ '<PARAM NAME="PLAY" VALUE="true">'
		+ '<PARAM NAME="LOOP" VALUE="false">'
		+ '<PARAM NAME="QUALITY" VALUE="high">'
		+ '<PARAM NAME="MENU" VALUE="false">'
		+ '<EMBED SRC="/flash/junk_ball_nav.swf"'		+ 'WIDTH="718" HEIGHT="70"'
		+ '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
		var alternateContent = '<img src="/images/nav/junk_ball_nav.gif" width="718" height="70" usemap="#MapNavMap4" border="0" href="/default.asp"><map name="MapNavMap4"><area shape="rect" coords="6,4,216,64" href="/default.asp"><area shape="circle" coords="301,39,28" href="/products/default.asp"><area shape="circle" coords="369,37,27" href="/awards/default.asp"><area shape="circle" coords="430,32,23" href="/locator/default.asp"><area shape="circle" coords="488,38,27" href="/faq/default.asp"><area shape="circle" coords="549,34,26" href="/press/default.asp"><area shape="circle" coords="632,36,31" href="/contact/default.asp"><area shape="circle" coords="689,39,23" href="/wishlist/viewList.asp"></map>';

		document.write(alternateContent);	// insert non-flash content
	}
}
