// ***********************************************
// 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 )
// Added 10/6/09 and is referenced in index.html - DCW
// ***********************************************
      var now = new Date();
     
      var months = new Array(
        'January','February','March','April','May',
        'June','July','August','September','October',
        'November','December');
        function fourdigits(number)	{
          return (number < 1000) ? number + 1900 : number;}
      today = months[now.getMonth()];
      document.write(today);

