// JavaScript Document
// Play the main banner flash

// 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) {
	AC_FL_RunContent( 'width','900','height','345','type','application/x-shockwave-flash','movie','/flash/lobby-track/main/main','wmode','transparent' ); //end AC code
} else {
	var alternateContent = '<a href=http://www.adobe.com/go/getflash/><img src="/images/homepage/homepage_noflash.jpg" border="0" alt="Flash Required" /></a>';
	document.write(alternateContent);  // insert non-flash content							
}
