// JavaScript Document
/*browser default
*/


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)
 {
  alert("To view this site correctly, please use Internet Explorer 8 or higher. Thank You.");
  window.location="index2.html";
 }
}
/*end browser default
*/
