// JavaScript Document


var getAgent= new function(){
	this.set = function(dir, href){
		var _s = document.location.href.split('?')[1];
		if(_s == "pc") return false;
		if((document.referrer.indexOf(dir) == -1)){ 
			if((navigator.userAgent.indexOf("IS01") != -1)||(navigator.userAgent.indexOf("SH-10B") != -1)||(navigator.userAgent.indexOf("SMT-i9100") != -1)){
			} else if((navigator.userAgent.indexOf("iPhone") != -1)||((navigator.userAgent.indexOf("Android") != -1)&&(navigator.userAgent.indexOf("Mobile") != -1))||(navigator.userAgent.indexOf('iPod')  !=-1)){
				window.location.href = href;
			}
		}
	}
}();


