    <!--
    function abreVentana(w)
    {
        x=window.open(w,'PopUp','width=600px,height=500px,resizable=no,scrollbars=yes');
        x.focus();
    }
    function abreVentanaEventoProvincia(w)
    {
        x=window.open(w,'PopUp','width=800px,height=600px,resizable=yes,scrollbars=yes');
        x.focus();
    }
    function abreVentana2(w,ancho,alto)
    {
        var l, t;
        l = (screen.width - ancho)/2;
        t = (screen.height - alto)/2;
        x=window.open(w,'PopUp','width=' + ancho + 'px,height=' + alto + 'px,resizable=no,scrollbars=yes,left=' + l + ", top=" + t);
        x.focus();
    }
    function addOnLoad(nuevoOnLoad) 
    {   
        var prevOnload = window.onload;   
        if (typeof window.onload != 'function') 
        {      
            window.onload = nuevoOnLoad;   
        }   
            else 
        {      
            window.onload = function() 
            {          
                prevOnload();          
                nuevoOnLoad();      
            }   
        }
    }
    function mostrar(id)
    {
        obj=document.getElementById(id);
        if ( obj!=null )
        {
            if (obj.style.display == 'none')
                obj.style.display = 'block';
            else
                obj.style.display = 'none';
        }
    }
    function Abandonar()
    {
        window.href="Abandonar.aspx";
    }
    
    //-->



