// JavaScript Document 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
	+ 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="700" height="130" align="middle">'
	+ '<param name="allowScriptAccess" value="sameDomain" />'
	+ '<param name="movie" value="links.swf" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<param name="quality" value="high" />'
	+ '<embed src="links.swf" quality="high" width="700" height="130" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '<\/object>';
	document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<table style="width:100%;" cellpadding="0" cellspacing="0">'
        + '       <tr>'
        + '       <td style="text-align:left; vertical-align:top; padding-left:25px;"><img src="noflash/heading-links.gif" alt="Useful Links" style="width:220px; height:130px;" /></td>'
        + '       <td style="text-align:right; vertical-align:top; padding-top:5px;">'
        + '       This website is optimised for flash player 8 or higher.<br />To get the best experience install the flash player now.<br />'
        + '       <a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="noflash/get_flash_player.gif" alt="Get Flash Player" style="border:none;" /></a>'
        + '       </td>'
        + '       </tr>'
        + '       </table>';
	document.write(alternateContent);  // insert non-flash content
	
  }

  

  