//Reloj
function mueveReloj(){
    var momentoActual = new Date();
    var hora = momentoActual.getHours();
    var minuto = momentoActual.getMinutes();
    var segundo = momentoActual.getSeconds();

    str_segundo = new String (segundo);
    if (str_segundo.length == 1)
        segundo = "0" + segundo;

    str_minuto = new String (minuto);
    if (str_minuto.length == 1)
        minuto = "0" + minuto;

    str_hora = new String (hora);
    if (str_hora.length == 1)
        hora = "0" + hora;

    horaImprimible =  hora + " : " + minuto + " : " + segundo ;

    var div_reloj = document.getElementById("div_reloj");
    div_reloj.firstChild.nodeValue = horaImprimible;
//    if (str_segundo == "20")
//        window.location = "../out/out.Noticias.php";

    setTimeout("mueveReloj()",1000);
}
