<!-- Begin
todaydate = new Date();
timeis=todaydate.getTime();
todaydate.setTime(timeis);
houris = todaydate.getHours();
if (houris > 17) display = "Evening";
else if (houris >12) display = "Afternoon";
else display = "Morning";
var welcome = ("Good " + display + "! Welcome to Dental India site!");
document.write(welcome);
// End -->
