﻿// JScript File
function cargarDetalleNoticia(codigo){
	var ventana;
	ventana=window.open('wfDetalleNoticia.aspx?codigo=' + codigo, 'VerDetalleNoticias','width=370,height=390,scrollbars=1,menubar=0,toolbar=0,location=0,status=0,resizable=1',true);
	ventana.focus();
}
function maxCaracteres(txarea,totalCaracteres) 
{ 
    total = totalCaracteres; 
    tam = txarea.value.length; 
    str=""; 
    str=str+tam; 
    Digitado.innerHTML = str; 
    Restante.innerHTML = total - str; 

    if (tam > total){ 
        aux = txarea.value; 
        txarea.value = aux.substring(0,total); 
        Digitado.innerHTML = total 
        Restante.innerHTML = 0 
    } 
}

function abrirLista(url){
	var ventana;
	ventana=window.open(url, 'VerDetalleNoticias','width=780,height=600,scrollbars=1,menubar=0,toolbar=0,location=0,status=0,resizable=1',true);
	ventana.focus();
}
