/* if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
   location.replace("mobileindex.html");
} */

if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
   location.replace("mobileindex.html");
}

else if(navigator.userAgent.indexOf("BlackBerry")!=-1) {
  document.getElementById("mobile").style.visibility="visible";
}

function redirect() {
  if (document.getElementById("mobile").style.visibility!="visible") {
    window.location="mobileindex.html"
  }
}

if (screen.width <= 699) {
document.location = "mobileindex.html";
}
