	var flash = checkFlash( 9, 0, 115 );
	if ( flash == needsUpgrade )
	{
		displayMessage('You appear to be using an outdated version of the Adobe Flash Player. If you experience problems viewing media, please try upgrading to the latest version which is available for free at <a href="http://www.adobe.com/go/getflashplayer" target="_blank">http://www.adobe.com/go/getflashplayer</a>.');  
	}
	else if ( flash == noFlash )
	{
		displayMessage('Displaying videos on this site requires Adobe Flash Player.  You can download Adobe Flash Player from <a href="http://www.adobe.com/" target="_blank">http://www.adobe.com</a>.');
	}
	
	function displayMessage(message)
	{
		var controlId = 'flasherror';
	 	if ( document.getElementById( controlId ) )
			document.getElementById( controlId ).style.display = "block";

		document.getElementById( controlId ).innerHTML = "<p style=\"color:red\">" + message + "</p>";
	}

