		<!--
		//******** Set this dynamically *********//
		//******** set to either en-US (default) or en-CA
		//var regionCulture = "en-US";
		//
		var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
		if(hasRightVersion) {  // if we've detected an acceptable version
			objFlashTag = new FlashTag("/header.swf","950","78"); 
			objFlashTag.setBgcolor("3F6093");
			objFlashTag.setId("header");
			//
			objFlashTag.setFlashVars("culture="+regionCulture);
			//objFlashTag.setFlashVars("initWedge=45");
			//
			// Added this for transparency. Delete the following line for normal flash with bkg color.
			//objFlashTag.setWmode("transparent");
			objFlashTag.write( document );
		} else {  // flash is too old or we can't detect the plugin
			if(regionCulture == "en-CA"){
				var alternateContent = '<img src="/img/header_noflash_ca.jpg" width="950" height="78" border="0" usemap="#headermap">'
				+ '<map name="headermap">'
				+ '<area alt="" coords="801,28,846,64" href="http://www.firebrandtraining.co.uk/home">'
				+ '<area alt="" coords="755,26,798,66" href="http://www.firebrandtraining.de/home">'
				+ '<area alt="" coords="710,26,751,65" href="http://www.firebrandtraining.at/home">'
				+ '<area alt="" coords="665,27,706,65" href="http://www.firebrandtraining.ch/home">'
				+ '<area alt="" coords="897,28,943,62" href="http://www.trainingcamp.com/Default.aspx?culture=en-US">'
				+ '</map>';
			}else{
				var alternateContent = '<img src="/img/header_noflash_us.jpg" width="950" height="78" border="0" usemap="#headermap">'
				+ '<map name="headermap">'
				+ '<area alt="" coords="801,28,846,64" href="http://www.firebrandtraining.co.uk/home">'
				+ '<area alt="" coords="755,26,798,66" href="http://www.firebrandtraining.de/home">'
				+ '<area alt="" coords="710,26,751,65" href="http://www.firebrandtraining.at/home">'
				+ '<area alt="" coords="665,27,706,65" href="http://www.firebrandtraining.ch/home">'
				+ '<area alt="" coords="850,28,896,62" href="http://www.trainingcamp.com/Default.aspx?culture=en-CA">'
				+ '</map>';
			}
			document.write(alternateContent);// insert non-flash content
		}
		// -->
