/* location.replace("jsp/script/index1.jsp?site=1") */

function getScreenSiteOLD() {
 if ((screen.height >= 768) && (screen.width >= 1024)) {
  return "jsp/1024/index.jsp";
 }
 if ((screen.height <= 600) && (screen.width <= 800)) {
  return "jsp/800/index.jsp";
 }
 /* return document.write(screen.height +" x "+screen.width); */
 return "jsp/1024/index.jsp";
}

function getScreenSite() {
 return "jsp/index.jsp";
}

/* BrowserCheck */
function checkBrowser() {
 this.browser = "Unknown";
 if (navigator.appName == "Opera" && parseInt(navigator.appVersion) > 6 )  { this.browser = "opera"; }
 if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4) { this.browser = "ie" ; }
 if(navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 5) { this.browser = "ns6"; }
 if((this.browser == "Unknown") ) {
  document.write(window.location.href = "error/noBrowser.html");
 }
}
