helixtime = new Date()
 hrstime = helixtime.getHours()
 if (hrstime < 7){document.write('Good morning and welcome')}
 if (hrstime > 6 && hrstime <12){document.write('Good morning and welcome')}
 if (hrstime > 11 && hrstime <18){document.write('Good afternoon and welcome')}
 if (hrstime >17){document.write('Good evening and welcome')}
