// JavaScript Document


var getAgent= new function(){
	this.set = function(dir, href){
		if((document.referrer.indexOf(dir) == -1)){ 
			if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
			        window.location.href = href;
			}
		}
	}
}();
