var v_winies;

function navegador ()
{
     // alert(window.navigator.appName+" "+window.navigator.appVer);
     if (window.navigator.appName != "Microsoft Internet Explorer") {
        alert("Esta aplicación únicamente es accesible con el navegador Microsoft Internet Explorer.\n"+
            "Si desea descargar Internet Explorer 5.5 pulse en el enlace inferior.");
        return false;
     }
     return true;
}

function shownotas(p_pcon,p_pdni) {
    var w = 300 ;
    var h = 220;
    var l = (screen.width - w)/2 ;
    var t = (screen.height - h)/2 ;
    window.open('http://uex01.unex.es:8002/pls/pau/pau.notapau?pcon='+p_pcon.value+'&pdni='+p_pdni.value,'wiex','scrollbar=auto, left='+l+', top='+t+', height='+h+', width='+w);
    return true;
}

