// JavaScript Document
				var oeTags;
				// 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
					//if (false) {
						
						oeTags = '<object style="padding:0px; margin:0px; //border: 1px solid #ff0000" clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'
						+ ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'
						+ ' id="dynamicmultiimage" width="710" height="80">'
						+ ' <param name="movie" value="/images/word_animation_simple.swf?id='+numb+'">'
						+ ' <param name=bgcolor value=#ffffff>'
						+ ' <param name="quality" value="high">'
						+ ' <embed src="/images/word_animation_simple.swf?id='+numb+'" '
						+ ' name="dynamicmultiimage"'
						+ ' width="710" height="80"'
						+ ' bgcolor="#ffffff"'
						+ ' quality="high"'
						+ ' type="application/x-shockwave-flash"'
						+ ' pluginspage="http://www.macromedia.com/go/getflashplayer">'
						+ '</embed>'
						+ '</object>';
					
					 	// embed the flash movie
					} else {	// flash is too old or we can't detect the plugin
					
					oeTags = '<img src="images/flash_holder.gif" alt="pattern" width="710" height="80" border="0" />'
					
					}
						document.write(oeTags); 	// embed the flash movie
				}