﻿function DetectarMovil() {
    var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
    if (mobile) {
        var rutconvert = document.location.href.toLowerCase();
        if (rutconvert.indexOf("/nota/visornota") != -1) {
            var newrutconvert = rutconvert.replace("/nota/", "/movil/");
            window.location = newrutconvert;
        } else {
            window.location = "http://www.unionradio.net/actualidadur/movil/";
        }
    }
}
 
