var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";

var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();

helixtime = new Date()
	hrstime = helixtime.getHours()
	if (hrstime < 7){document.write('<img src="stat/morning.gif" width="367" height="42" alt="A Very Early Welcome...">')}
	if (hrstime > 6 && hrstime <12){document.write('<img src="stat/morning.gif" width="367" height="42" alt="Good Morning and Welcome...">')}
	if (hrstime > 11 && hrstime <18){document.write('<img src="stat/afternoon.gif" width="367" height="42" alt="Good Afternoon and Welcome...">')}
	if (hrstime > 17){document.write('<img src="stat/evening.gif" width="367" height="42" alt="Good Evening and Welcome...">')}



if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))		
year="19" + year;
if (navigator.appName == "Netscape")
year=1900 + year;
