function isMobile(){

    var agent = navigator.userAgent;
    agent = agent.toLowerCase();

    if(agent.indexOf("iphone") >= 0 || agent.indexOf("nokia") >= 0 || agent.indexOf("android") >= 0){
        return true;
    }

    return false;
    
} // END isMobile

function isIpad(){

    var agent = navigator.userAgent;
    agent = agent.toLowerCase();

    if(agent.indexOf("ipad") >= 0){
        return true;
    }

    return false;
    
} // END isIpad

function redirectToMobile(lang){
    
    if($.cookie('redirectMobile') != 'NOT'){
        if(lang == 'ru'){
            window.document.location = 'http://m.rus.tvnet.lv/'
        }else{
            window.document.location = 'http://m.tvnet.lv/'
        }
    }
    
} // END redirectToMobile
