
function detectTapatalk() {
	if (document.cookie.indexOf("tapatalk_redirect=true") < 0) {
		if (!navigator.userAgent.match(/Opera/i)) {
			if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
				if (confirm("Click Ok for the mobile forums or Cancel to continue to the normal forums. Also available on Tapatalk.")) {            
					window.location = "http://snowskaters.net/forum/index.php?wap2";
				} else {
					setTapatalkCookies();
				}
			} else if(navigator.userAgent.match(/android/i)) 
				if (confirm("Click Ok for the mobile forums or Cancel to continue to the normal forums. Also available on Tapatalk.")) {            
					document.cookie = "tapatalk_redirect=true"; 
					window.location = "http://snowskaters.net/forum/index.php?wap2";
				} else {
					setTapatalkCookies();
				}
			} else if((navigator.userAgent.match(/Symbian/i)) || (navigator.userAgent.match(/Nokia/i))) {
				if (confirm("Click Ok for the mobile forums or Cancel to continue to the normal forums. Also available on Tapatalk.")) {            
					document.cookie = "tapatalk_redirect=true"; 
					window.location = "http://snowskaters.net/forum/index.php?wap2";
				} else {
					setTapatalkCookies();
				}
			}
			
		}
	}
}

function setTapatalkCookies() {
	var date = new Date();
	var days = 1;
	date.setTime(date.getTime()+(days*24*60*60*1000));
	var expires = "; expires="+ date.toGMTString();
	document.cookie = "tapatalk_redirect=false" + expires; 
}

detectTapatalk();

