function normalFontSize() {
	if(document.all)
		document.all.tableall.className="normal";
	else
		document.getElementById("tableall").setAttribute("class", "normal");
}

function largeFontSize() {
	if(document.all)
		document.all.tableall.className="large";
	else
		document.getElementById("tableall").setAttribute("class", "large");
}

function showDate() {
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
      var now = new Date();
	  var Minutes = ((now.getMinutes() < 10) ? "0" : "") + now.getMinutes();
      var hours = now.getHours();
      var days = new Array(
        'Sunday','Monday','Tuesday',
        'Wednesday','Thursday','Friday','Saturday');
      var months = new Array(
        'January','February','March','April','May',
        'June','July','August','September','October',
        'November','December');
      var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
        function fourdigits(number)	{
          return (number < 1000) ? number + 1900 : number;}
      today =  months[now.getMonth()] + " " +
        date + ", " +
          (fourdigits(now.getYear()));
      
      if(hours>12) {
        today = today + " - " + (hours-12)+":"+Minutes+" pm";
      } else if(hours==12) {
        today = today + " - " + hours+":"+Minutes+" pm";
      } else if(hours==0) {
        today = today + " - " + "12:"+Minutes+" am";
      } else {
        today = today + " - " + now.getHours()+":"+Minutes+" am";
      }
      return today;
}
