

var Browser = {
  Version: function() {
    var version = 999; // we assume a sane browser
    if (navigator.appVersion.indexOf("MSIE") != -1)
      // bah, IE again, lets downgrade version number
      version = parseFloat(navigator.appVersion.split("MSIE")[1]);
    return version;
  }
}



if (Browser.Version() < 6) {
document.write("<div id='iewarning'>Your version of internet Explorer is outdated and not fully supported.You can still use this site but it will not look as intended. We strongly recommend that you update to a modern more secure browser. The latest version of Internet Explorer can be downloaded from Microsofts website or why not try Firefox at <a href='http://www.firefox.com'>www.firefox.com</a>.</div>");
  }
