// JavaScript Document

if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 if (ieversion<=7)
  document.write("<div id='Error'><div><a href='http://www.mozilla-europe.org/en/firefox/' target='_blank'><img src='http://snowbow.co.uk/includes/graphics/website/browser-firefox.gif' alt='Click here to download the latest version' width='130' height='40' border='0' /></a> <a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx' target='_blank'><img src='http://snowbow.co.uk/includes/graphics/website/browser-ie.gif' alt='Click here to download the latest version' width='200' height='40' border='0' /></a></div><h4>You're using an old version of Internet Explorer.</h4><p> Please upgrade or download the latest browser version to view this website correctly.</p></div>");
};
