// 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", "menu-creavideo",
				"width", "846",
				"height", "50",
				"align", "middle",
				"id", "menu",
				"quality", "high",
				"wmode","transparent",
				"name", "menu-creavideo",
				"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="menu"><p><a href="/">Cr&eacute;avid&eacute;o /</a><a href="video-professionnelle-alsace.html">Video professionnelle en Alsace /</a><a href="creation-site-internet-alsace.html">Cr&eacute;ation site internet en Alsace /</a><a href="references.html">R&eacute;f&eacute;rences vid&eacute;o et internet /</a><a href="contact.html">Contact </a></p></div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->