// JavaScript Document
var hora = new Date();

function bondia() {
	if ((hora.getHours()>6)&&(hora.getHours()<14)) {
		document.write("Bon dia!");
	}
	if ((hora.getHours()>13)&&(hora.getHours()<21)) {
		document.write("Bona tarda!");
	}
	if ((hora.getHours()>20)&&(hora.getHours()<7)) {
		document.write("Bona nit!");
	}
}
