// JavaScript Document
if (navigator.userAgent.indexOf('iPhone') != -1) {
	window.location="/iphone/index.html";
} else {
	window.location="main.php";
}

