<!--
// 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", "/img/vflashlogo",
				"menu", "false",
				"id", "victoryLogo",
				"width", "200",
				"height", "114",
				"wmode", "transparent",
				"quality", "high",
				"scale", "scale",
				"bgcolor", "#f9eabf",
				"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 = '<a href="index.html"><img id="victoryLogo" src="/img/Victory_head_title.jpg" width="196" height="114" alt="Victory Productions Home" /></a>';
	document.write(alternateContent);  // insert non-flash content
}
// -->
