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); 
      } 

