if (tipoBrowser == 'iphone') {
    var cookieiphone = Get_Cookie('iphone');
    if (cookieiphone == null) {
        window.location.href = 'http://m.azulgris.com';
    }
    else if (cookieiphone == '2') {
        window.location.href = 'http://iphone.' + site + '.com/';
    }
}
else if (tipoBrowser == 'ipad') {
    var cookieipad = Get_Cookie('ipad');
    if (cookieipad == null) {
       window.location.href = 'http://m.azulgris.com';
    } 
}
else if (tipoBrowser == 'blackberry') {
    var cookieblackberry = Get_Cookie('blackberry');
    if (cookieblackberry == null) {
        window.location.href = 'http://m.azulgris.com';
    } else if (cookieblackberry == '2') {
        window.location.href = 'http://movil.' + site + '.com/';
    }
}
else if (tipoBrowser == 'android') {
    var cookieandroid = Get_Cookie('android');
    if (cookieandroid == null) {
        window.location.href = 'http://m.azulgris.com';
    }
    else if (cookieandroid == '2') {
        window.location.href = 'http://movil.' + site + '.com/';
    }
}
else if (tipoBrowser == 'otros' && tipoPlataforma != 'windows' && tipoPlataforma != 'mac') {
    window.location.href = 'http://movil.' + site + '.com/';

}



