// JavaScript Document
<!--

// Date Display Function
	function displayDay(){
		DayName = new Array(7)
		DayName[0] = "sunday, "
		DayName[1] = "monday, "
		DayName[2] = "tuesday, "
		DayName[3] = "wednesday, "
		DayName[4] = "thursday, "
		DayName[5] = "friday, "
		DayName[6] = "saturday, "
		var Today = new Date()
		var WeekDay = Today.getDay()
		return (DayName[WeekDay]);
	}
    function displayDate(){
      var this_month = new Array(12);
      this_month[0]  = "januray";
      this_month[1]  = "february";
      this_month[2]  = "march";
      this_month[3]  = "april";
      this_month[4]  = "may";
      this_month[5]  = "june";
      this_month[6]  = "july";
      this_month[7]  = "august";
      this_month[8]  = "september";
      this_month[9]  = "october";
      this_month[10] = "november";
      this_month[11] = "december";
      var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return(day+" "+this_month[month]+" " +year);
    }
	
// -->