
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// 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) {

} else {  // flash is too old or we can't detect the plugin
		
		if(document.getElementById('flashbanner'))
		{
			arrNoscripts = document.getElementById('flashbanner').getElementsByTagName('noscript');
			document.getElementById('flashbanner').innerHTML ='<div id="noflash">'+
				'<a href="'+strPath +'/index.php" id="homelink">Home</a>'+
				'<a href="'+strPath +'/newto/index.php" id="newtolink">New to Orienteering</a>'+
				'<a href="'+strPath +'/news/index.php" id="newslink">News</a>'+
				'<a href="'+strPath +'/about/index.php" id="aboutlink">About British Orienteering</a>'+
				'<a href="'+strPath +'/team/index.php" id="teamslink">British Teams</a>'+
				'<a href="'+strPath +'/developing/index.php" id="devlink">Developing Orienteering</a>'+
				'<a href="'+strPath +'/downloads/index.php" id="downloadlink">Downloads</a>'+
				'<a href="'+strPath +'/event/index.php" id="eventlink">Event Information</a>'+
				'<a href="'+strPath +'/contactus/index.php" id="contactlink">Contact Us</a>'+
			'</div>';
			
		
		}	
}
// -->
