function getTime()
   {
      Stamp = new Date();
      year = Stamp.getYear();
      var sMonth;
      if (year < 2000) year = 1900 + year;
      if (Stamp.getMonth() == 0) sMonth = "January";
      if (Stamp.getMonth() == 1) sMonth = "February";
      if (Stamp.getMonth() == 2) sMonth = "March";
      if (Stamp.getMonth() == 3) sMonth = "April";
      if (Stamp.getMonth() == 4) sMonth = "May";
      if (Stamp.getMonth() == 5) sMonth = "June";
      if (Stamp.getMonth() == 6) sMonth = "July";
      if (Stamp.getMonth() == 7) sMonth = "August";
      if (Stamp.getMonth() == 8) sMonth = "September";
      if (Stamp.getMonth() == 9) sMonth = "October";
      if (Stamp.getMonth() == 10) sMonth = "November";
      if (Stamp.getMonth() == 11) sMonth = "December";
      document.write(Stamp.getDate()+ " "+ sMonth +" "+ year);
      var Hours;
      var Mins;
      var Time;
      Hours = Stamp.getHours();
      if (Hours >= 12) {Time = " p.m";}
      else {Time = " a.m";}
      if (Hours > 12) {Hours -= 12;}
      if (Hours == 0) {Hours = 12;}
      Mins = Stamp.getMinutes();
      if (Mins < 10) {Mins = "0" + Mins;}
      document.write("  " + Hours + ":" + Mins + Time);
   }

