<!-- hide script from old browsers 
		var now = new Date();
      var days = new Array(
        'Sunday','Monday','Tuesday',
        'Wednesday','Thursday','Friday','Saturday');
      var months = new Array(
        'Jan','Feb','Mar','Apr','May',
        'Jun','Jul','Aug','Sep','Oct',
        'Nov','Dec');
      var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
        function fourdigits(number)	{
          return (number < 1000) ? number + 1900 : number;}
      today =  days[now.getDay()] + ", " +
        months[now.getMonth()] + " " +
        date + ", " +
          (fourdigits(now.getYear()));
            document.write("<font style='font-size:11px;' face='tahoma' color='#a40e0f'><b>");
      document.write(today);
            document.write("</b></font>");

// end hiding script from old browsers -->

