// JavaScript Document
<!--
	// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
	var hasProductInstall = DetectFlashVer(6, 0, 65);

	// Version check based upon the values defined in globals
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	
	// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
	if ( hasProductInstall && !hasReqestedVersion ) {
		// MMdoctitle is the stored document.title value used by the installation process to close the window that started the process
		// This is necessary in order to close browser windows that are still utilizing the older version of the player after installation has completed
		// DO NOT MODIFY THE FOLLOWING FOUR LINES
		// Location visited after installation is complete if installation is required
		var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
		var MMredirectURL = window.location;
		document.title = document.title.slice(0, 47) + " - Flash Player Installation";
		var MMdoctitle = document.title;
	
		AC_FL_RunContent(
			"src", "playerProductInstall",
			"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
			'width','552',
			'height','262',
			"align", "middle",
			"id", "detectionExample",
			"quality", "high",
			"name", "detectionExample",
			"allowScriptAccess","sameDomain",
			"type", "application/x-shockwave-flash",
			"pluginspage", "http://www.adobe.com/go/getflashplayer"
		);
	} else if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		AC_FL_RunContent(
				'src','WorldMap',
				'width','552',
				'height','262',
				"align", "middle",
				"id", "worldMap",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"name", "worldMap",
				"wmode", "transparent",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
		);
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<div id="alternateContent">'
		+ '<!-- Start Definition List -->	'
		+ '<dl>'
			+ '<!-- Start First Column -->'
			+ '<dd style="width:155px">'
				+ '<ul>'
					+ '<li class="continent">Europe</li>'
					 + '<li>Vienna, Austria</li>'
					 + '<li>Athens, Greece</li>'
					 + '<li>Santorini, Greece</li>'
					 + '<li>Ios, Greece</li>'
					 + '<li>Mykonos, Greece</li>'
					 + '<li>Budapest, Hungary</li>'
					 + '<li>Florence, Italy</li>'
					 + '<li>Rome, Italy</li>'
					 + '<li>Venice, Italy</li>'					 
					 + '<li>Cork, Ireland</li>'
					 + '<li>Dublin, Ireland</li>'	 
					 + '<li>Galway, Ireland</li>'
					 + '<li>Edinburgh, UK</li>'
					 + '<li>London, UK</li>'
					 + '<li>Barcelona, Spain</li>'	
				+ '</ul>'
			+ '</dd>'
				+ '<!-- Start Second Column -->'
			+ '<dd style="width:185px">'
				+ '<ul>' 
					+ '<li>Ibiza, Spain</li>'
					+ '<li>Madrid, Spain</li>'
					+ '<li>Costa del Sol, Spain</li>'
					+ '<li>Amsterdam, Holland</li>'
					+ '<li>Berlin, Germany</li>'
					+ '<li>Brussels, Belgium</li>'
					+ '<li>Lucernce, Switzerland</li>'
					+ '<li>Munich, Germany</li>'
					+ '<li>Paris, France</li>'
					+ '<li>Prague, Czech Republic</li>'
					+ '<li>Nice, France</li>'
					+ '<li class="continent">Africa</li>'
					+ '<li>Cairo, Egypt</li>'
					+ '<li class="continent">South Pacific</li>'
					+ '<li>Rotorua, New Zeland</li>'
					+ '<li>Sydney, Australia</li>'
					+ '<li>Surfers Paradise, Aus.</li>'
				+ '</ul>'
			+ '</dd>'
			+ '<!-- Start Third Column -->'
			+ '<dd style="width:185px">'
				+ '<ul>'
					 + '<li class="continent">South Pacific</li>'
					+ '<li>Rotorua, New Zeland</li>'
					+ '<li>Sydney, Australia</li>'
					+ '<li>Surfers Paradise, Aus.</li>'
					 + '<li class="continent">Asia</li>'
					+ '<li>Tokyo, Japan</li>'
					+ '<li>Beijing, China</li>'
					+ '<li>Shanghai, China</li>'
					+ '<li>Xi&rsquo;an, China</li>'
					+ '<li>Hong Kong, China</li>'
					+ '<li>Bangkok, Thailand</li>'
					+ '<li>Prachuap Khiri Khan, Thailand</li>'
					 + '<li class="continent">Cenral America</li>'
					+ '<li>San Jose, Costa Rica</li>'
					+ '<li>Jaco Beach, Costa Rica</li>'
				+ '</ul>'
			+ '</dd>'
		 
		 + '</dl>'
			 + '<!-- End Definition List -->'
		
		+ '</div>';
		document.write(alternateContent);  // insert non-flash content
	}
	// -->
