// 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="550" height="125"'		+ 'codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0">'		+ '<PARAM NAME="MOVIE" VALUE="../../../../misc/spress/images/flash/wdmenu2.swf">'		+ '<PARAM NAME="QUALITY" VALUE="high">'		+ '<PARAM NAME="MENU" VALUE="false">'		+ '<EMBED SRC="../../../../misc/spress/images/flash/wdmenu2.swf"'		+ 'WIDTH="550" HEIGHT="125"'		+ 'QUALITY="high"'		+ '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="../../../../misc/spress/images/wdmenulogo.jpg" width="550" height="125" usemap="#wdropnav" border="0" align="center">'		+ '<map name="wdropnav">'		+ '<area shape="rect" coords="94,-1,172,14" href="../../../../misc/spress/spress.html">'		+ '<area shape="rect" coords="12,-4,82,15" href="http://www.asuwebdevil.com">'		+ '<area shape="rect" coords="186,-1,245,15" href="../../../../features/features.html">'		+ '<area shape="rect" coords="259,-6,358,14" href="../../../../misc/spress/ent/default.html">'		+ '<area shape="rect" coords="370,-2,433,15" href="../../../../misc/spress/spress.html">'		+ '<area shape="rect" coords="444,1,505,14" href="../../../../misc/spress/spress.html">'		+ '</map>';		document.write(alternateContent);	// insert non-flash content	}}