﻿var requiredMajorVersion = 6;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;

// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "../flash/header",
				"width", "955",
				"height", "280",
				"align", "middle",
				"id", "home",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"name", "home",
				"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 = '<img src="../graphics/noflash.jpg" width="955" height="280" usemap="#noflashc1359dd9" border="0"><map name="noflashc1359dd9"><area shape="rect" coords="861,58,932,72" href="../weather/index.html" alt="" /><area shape="rect" coords="740,57,841,72" href="../helpful_info/index.html" alt="" /><area shape="rect" coords="632,57,719,72" href="../dine_lodge/index.html" alt="" /><area shape="rect" coords="510,55,612,72" href="../things_to_do/index.html" alt="" /><area shape="rect" coords="407,57,493,72" href="../outdoors/index.html" alt="" /><area shape="rect" coords="43,57,378,81" href="../index.html" alt="" /></map>';
	document.write(alternateContent);  // insert non-flash content
}
