/**
* HBOUK - flashmessage.js - ShowFlashMessage()
* 
* shows each company at a glance
* 
* @author						Neil Young neil.young@neilyoungcv.com
* @version						0.9
* @todo							???
*
* @param string					pageTitle
*
*/

function ShowFlashMessage( pageTitle ){
	// build the flash message
	var message = '<div id="Warning"><p class="FlashPlayerMessage">It would seem you don\'t have the latest version of the Adobe Flash player installed in your browser. To use the <strong title="' + pageTitle + '">' + pageTitle + '</strong> you need at least version <strong>10</strong> of the player. You can download this easily and for free from the <a href="http://get.adobe.com/flashplayer/" target="_blank">Adobe Website</a></p><a href="http://get.adobe.com/flashplayer/" target="_blank"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_flash_player.png" border="0" /></a></div>';
	
	// set the html for the message
	document.getElementById("FlashMessage").innerHTML = message;
	
	return true;

}
