    <!--
    function abreVentana(w)
    {
        x=window.open(w,'PopUp','width=500px,height=600px,resizable=no,scrollbars=yes');
        x.focus();
    }
    function abreVentana2(w,ancho,alto)
    {
        x=window.open(w,'PopUp','width=' + ancho + 'px,height=' + alto + 'px,resizable=no,scrollbars=yes');
        x.focus();
    }
    function addOnLoad(nuevoOnLoad) 
    {   
        var prevOnload = window.onload;   
        if (typeof window.onload != 'function') 
        {      
            window.onload = nuevoOnLoad;   
        }   
            else 
        {      
            window.onload = function() 
            {          
                prevOnload();          
                nuevoOnLoad();      
            }   
        }
    }
    function ValidarCaracteres(textareaControl,maxlength)
    {
        if (textareaControl.value.length > maxlength)
        {
            textareaControl.value = textareaControl.value.substring(0,maxlength);
            alert("Debe teclear hasta un maximo de "+maxlength+" caracteres");
        }
    }    
    



    function recargar()
    {
        var id=document.getElementById('marco');
        if (id!=null)
            id.src='/Administracion/Blanco.ashx';
    }

    function activarRecargar()
    {
        setInterval('recargar()',60000);
    }
    //-->
