function readCookieHead(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') c = c.substring(1, c.length);
        if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
    }
    return null;
}

function createCookieHead(name,value,days) {
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        var expires=";expires=" + date.toGMTString();
    }
    else var expires = "";
    document.cookie=name+"="+value+expires+"; path=/";
}

var mob;
if(!navigator.userAgent.match(/(Android)/gi) && navigator.userAgent.match(/(Macintosh)|(WindowsNT)|(Windows NT)|(WinNT)|(WindowsXP)|(Windows XP)|(Windows98)|(Windows 98)|(Win98)|(Windows95)|(Windows 95)|(Win95)|(SymbianOS)|(Linux)/gi))mob = false;
else mob = true;


if(readCookieHead("bz_cookieMobile") != null && readCookieHead("bz_cookieMobile")==1 && mob==true){
	window.location='http://m.blitz.pt/gen.pl?skin=bz:m';
}else if(readCookieHead("bz_cookieMobile") == null && mob==true){
    window.location='http://blitz.aeiou.pt/index_mobile.html';
}
