﻿function Contacto() {
    $("ventanaModal").style.visibility = "visible";
    $("contacto").style.display = "block";
}
function CancelarContacto() {
    $("ventanaModal").style.visibility = "hidden";
    $("contacto").style.display = "none";
}

function MostrarModal(pnlModal, pnlDatos) {
    $(pnlModal).style.visibility = "visible";
    $(pnlDatos).style.display = "block";
}
function CancelarModal(pnlModal, pnlDatos) {
    $(pnlModal).style.visibility = "hidden";
    $(pnlDatos).style.display = "none";
}

function OcultarPassword(estado)
{
    if(estado)
    {
        document.getElementById('repassword').style.display="none";
        document.getElementById('password').style.display="none";
        document.getElementById('cambiarPassword').style.display="block";
    }
    else
    {
        document.getElementById('repassword').style.display="block";
        document.getElementById('password').style.display="block";
        document.getElementById('cambiarPassword').style.display="none";
    }
    return true;
}




