function goPage(strDireccion)
{
    document._frmConsulta._hidDireccion.value = strDireccion;
    document._frmConsulta.action = document.location.pathname;
    document._frmConsulta.submit();
}
 
function colorReg (objTR, strColorFondo, strColorFuente)
{
    objTR.style.backgroundColor = strColorFondo;
    objTR.style.color = strColorFuente;
}
