var deviceIphone = "iphone";
var deviceIpod = "ipod";
var deviceAndroid = "android";
var deviceIpad = "ipad";

//Initialize our user agent string to lower case.
function verifyNav(device){
	var uagent = navigator.userAgent.toLowerCase();
	if (uagent.search(device) > -1){
		return true;
	} else{
		return false;
	}	
}

function browserDetect(){
	if (verifyNav(deviceAndroid) || verifyNav(deviceIphone) || verifyNav(deviceIpod)){
		document.location.href="mobile/paginas/index.html";
		//document.location.href="site/handler/home.php";
		
	} else if(verifyNav(deviceIpad)){
		document.location.href="mobile/paginas/index.html";
		//document.location.href="site/handler/home.php";
		
	} else {
		document.location.href="site/handler/home.php";
		//document.location.href="mobile/paginas/index.html";
	}
}
