//¸ð¹ÙÀÏ¿ë ÀÎµ¦½ºÆÄÀÏÀ» ¶ç¾î¶ó
var hasMobileValue;
var hasIphoneValue;
function mobileWebKubun(){
	if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match(/iPhone|Mobile|UP.Browser|Android|BlackBerry|Windows CE|Nokia|webOS|Opera Mini|SonyEricsson|opera mobi|Windows Phone|IEMobile|POLARIS/) != null){
		if (navigator.userAgent.match(/iPhone/) != null)
		{
			//alert("iphone");
			hasMobileValue = true;
			hasIphoneValue = true;
		}else{
			//alert("mobile");
			hasMobileValue = true;
			hasIphoneValue = false;
		}
	} else {
		//alert("noMobile");
		hasMobileValue = false;
		hasIphoneValue = false;
	}
}
