// <!--
var texto = "";

function mensaje () {
        var now = new Date();
        var hours = now.getHours();
        texto = "Buen";
        if (hours > 7 && hours < 12)
           texto += "os dias"
        else {
             if (hours >= 12 && hours < 20)
                texto += "as tardes"
             else 
                texto += "as noches"
             }
        texto += ", bienvenidos a Inmobiliaria Grande";
        window.status = texto;
        timerID = setTimeout("mensaje()",1000);
       }
// -->