function Ola() {
var today = new Date();
var hrs = today.getHours();
if (hrs < 12)
document.write("Bom dia");

else if (hrs < 18)
document.write("Boa tarde");
else
document.write("Boa noite");
}