﻿function detect() {
 if (window.location.search.indexOf("device=m") == -1 && navigator.userAgent.indexOf("iPhone") != -1) {
  location = "m/main.html";
  //alert("iphone");
 } else {
 //alert("desktop");
 }
}