// 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>=8)
//  document.write("<div style='background-color:#ffffff'><center><img src='images/compatible_ie.gif' width='31' height='30' border='0' /><span style='color:#6699cc;'>You are up to date with your IE browser</span></center></div>")
// else 
 if (ieversion<=7)
  document.write("<div style='background-color:#ffffff; font-size:18px;'><br><center><span style='color:#003366; font-weight:bold;'>Please Update to the latest <a href='http://www.microsoft.com/windows/internet-explorer/' target='_blank' style='color:#003366;'>Internet Explorer</a> for better functionality.</span></center><br></div>")
 else if (ieversion<=6)
  document.write("<div style='background-color:#ffffff; font-size:18px;'><br><center><span style='color:#003366; font-weight:bold;'>Please Update to the latest <a href='http://www.microsoft.com/windows/internet-explorer/' target='_blank' style='color:#003366;'>Internet Explorer</a> for better functionality.</span></center><br></div>")
 else if (ieversion<=5)
  document.write("<div style='background-color:#ffffff; font-size:18px;'><br><center><span style='color:#003366; font-weight:bold;'>Please Update to the latest <a href='http://www.microsoft.com/windows/internet-explorer/' target='_blank' style='color:#003366;'>Internet Explorer</a> for better functionality.</span></center><br></div>")
}

if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
 var ffversion=new Number(RegExp.$1) // capture x.x portion and store as a number
// if (ffversion>=3)
//  document.write("<div style='background-color:#ffffff'><center><img src='images/compatible_firefox.gif' width='31' height='30' border='0' /><span style='color:#6699cc;'>You're using FF 3.x or above</span></center></div>")
// else 
 if (ffversion<=2)
  document.write("<div style='background-color:#ffffff; font-size:18px;'><br><center><span style='color:#003366; font-weight:bold;'>You're using FireFox 2.x or lower. Update to the latest <a href='http://www.mozilla.com/' target='_blank' style='color:#003366;'>FireFox</a></span></center><br></div>")
 else if (ffversion<=1)
  document.write("<div style='background-color:#ffffff; font-size:18px;'><br><center><span style='color:#003366; font-weight:bold;'>You're using FireFox 1.x or lower. Update to the latest <a href='http://www.mozilla.com/' target='_blank' style='color:#003366;'>FireFox</a></span></center><br></div>")
}
