﻿var mobileTo="http://www.tirolthek.com/webtv/mobile/enjoy-the-alps/";
var tabletTo="http://www.tirolthek.com/webtv/mobile/enjoy-the-alps/ipad.php";

var isMobile=false;
var isTablet=false;

var agent=navigator.userAgent.toLowerCase();

var checks=["application/vnd.wap.xhtml+xml","iphone","sony","symbian","nokia","samsung","mobile","windows ce","epoc","opera mini","nitro","htc","maemo","j2me","midp-","cldc-","netfront","mot","up.browser","up.link","audiovox","blackberry","ericsson,","panasonic","philips","sanyo","sharp","sie-","portalmmm","blazer","avantgo","danger","palm","series60","palmsource","pocketpc","smartphone","rover","ipaq","au-mic,","alcatel","ericy","up.link","vodafone/","wap1.","wap2."];
var checksTablett=["ipad","zoom","tab","tablett"];

for(var i=0; i<checks.length; i++){
	if(agent.indexOf(checks[i])>0){
		isMobile=true;
		break;
	}
}

for(var i=0; i<checksTablett.length; i++){
	if(agent.indexOf(checksTablett[i])>0){
		isTablet=true;
		break;
	}
}

if(isTablet==true && tabletTo!=""){
	document.location.href=tabletTo;
}

if(isMobile==true && mobileTo!=""){
	document.location.href=mobileTo;
}
