// JavaScript Document
function checkBrowser() {
var IE = document.all;
var oldNS = document.layers;
var newNS = !document.all && document.getElementById;
var opera = window.opera;
if (opera) {
  window.location = "index2.html";
}  ;
if (IE)  {
   window.location = "index2.html";
}  ;
}  ;
