var YD = new Date();
  	var YS = YD.getMonth();
	 	var YH = YD.getHours();
			var Stop = ", "
		function Get_Greet(){
		 	if(YH<= 11){Greet = "<img src=\"images/h_am.gif\" height=\"35\" width=\"200\" border=\"0\">";}
				if(YH >= 12) {Greet = "<img src=\"images/h_pm.gif\" height=\"35\" width=\"200\" border=\"0\">";}
		 	if(YH >= 17) {Greet = "<img src=\"images/h_eve.gif\" height=\"35\" width=\"200\" border=\"0\">";}
		 	if(YH >= 22) {Greet = "<img src=\"images/h_late.gif\" height=\"35\" width=\"200\" border=\"0\">";}
			return Greet;}

		function ShowDayOfNMessage(Day){
			DayText="Today";
			if (Day == 0){DayText = "Sunday is not a good day to contact infoLink,<br>but we\'ll get back to you first thing tomorrow!";}
			if (Day == 1){DayText = "Monday is probably the best day to contact infoLink.<br>We are bright-eyed and bushy-tailed!";}
			if (Day == 2){DayText = "Tuesday is a very good day to contact infoLink.";}
			if (Day == 3){DayText = "Wednesday is a good day to contact infoLink.";}
			if (Day == 4){DayText = "Thursday is usually a very busy day but contact infoLink anyway,<br>we\'ll get back to you very quickly.";}
			if (Day == 5){DayText = "Friday is the last weekday to contact infoLink.";}
			if (Day == 6){DayText = "Saturday is not a good day to contact infoLink,<br>but we\'ll get back to you first thing on Monday!";}
			document.write(DayText);
return true;}