function mostrarocultardiv(divid) {
    div = document.getElementById(divid)
    if (div.style.visibility == 'hidden') {
        div.style.visibility = 'visible';
    } else {
        div.style.visibility = 'hidden';
    };
}
function mostrardiv(divid) {
    div = document.getElementById(divid)
    div.style.visibility = 'visible';
}
function ocultardiv(divid) {
    div = document.getElementById(divid)
    div.style.visibility = 'hidden';
}

function mostrarfechahora() {
    var ahora = new Date();
    var hora = ahora.getHours();
    if (hora < 10) {
        var hora = ahora.getHours();
        ahora.setHours("0"+hora);
    }
    document.write(ahora.getDate());
    document.write("/");
    document.write(ahora.getMonth() + 1);
    document.write("/");
    document.write(ahora.getFullYear());
    document.write(" ");
    document.write(ahora.getHours());
    document.write(":");
    document.write(ahora.getMinutes());
}
