	var useragent = navigator.userAgent.toLowerCase();
	
	if (useragent.indexOf('iphone') != -1 || useragent.indexOf('symbianos') != -1 || useragent.indexOf('ipad') != -1 || useragent.indexOf('ipod') != -1 || useragent.indexOf('android') != -1 || useragent.indexOf('blackberry') != -1 || useragent.indexOf('samsung') != -1 || useragent.indexOf('nokia') != -1 || useragent.indexOf('windows ce') != -1 || useragent.indexOf('sonyericsson') != -1 || useragent.indexOf('webos') != -1 || useragent.indexOf('wap') != -1 || useragent.indexOf('motor') != -1 || useragent.indexOf('symbian') != -1 ) 
	{
		var cookiemobile = getCookieMobile("cookiemobile");	
		
		if (cookiemobile == false) 
			window.location.href = 'http://m.netcombo.com.br';
		else
			if (cookiemobile != "classic")
				window.location.href = 'http://m.netcombo.com.br';
	}

	function getCookieMobile(name)
	{
		var nameE = name + "=";
		var cookies = document.cookie.split(";");
		for (var i = 0, Cookie; Cookie = cookies[i]; i++) {
			while(Cookie.charAt(0) == " ") {
			  	Cookie = Cookie.substring(1,Cookie.length);
			}
			if (Cookie.indexOf(nameE) == 0) {
			  	return Cookie.substring(nameE.length,Cookie.length);
			}
		}
		return false;
	}

