var agt = navigator.userAgent.toLowerCase();

if(agt.indexOf("iphone") != -1 || agt.indexOf("ipod") != -1 || agt.indexOf("ipad") != -1) {
	document.location.href = "mobile.php";
}
