// ***********************************************
// 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 days = new Array(
        'Sunnuntai','Maanantai','Tiistai',
        'Keskiviikko','Torstai','Perjantai','Lauantai');
      var months = new Array(
        '1','2','3','4','5',
        '6','7','8','9','10',
        '11','12');
      var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
        function fourdigits(number)	{
          return (number < 1000) ? number + 1900 : number;}
      today =  days[now.getDay()] + " " +
              date + ". " +

        months[now.getMonth()] + ". " +
          (fourdigits(now.getYear()));
      document.write(today);
