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"'
 + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0"' 
 + ' WIDTH=748 HEIGHT=34><PARAM NAME=movie VALUE="flash/navigation.swf">'
 + '<PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#666666>'
 + '<EMBED src="flash/navigation.swf" quality=high bgcolor=#666666 WIDTH=748 HEIGHT=34 '
 + '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 = '<table border="0" width="748" cellpadding="0" cellspacing="0"><tr><td><img src="images/menu_bot.gif" USEMAP="#map" border="0"></td></tr></table>'	// height, width required!
			;//any desired alternate html code goes here

		document.write(alternateContent);	// insert non-flash content
	}
}

// -->