
<!--

  function MakeArray(size) 
  {
  this.length = size;
  for(var i = 1; i <= size; i++)
  {
  this[i] = "";
  }
  return this;
  }



  var now = new Date();
  var year = now.getYear();
  var month = now.getMonth() + 1;
  var date = now.getDate();
  var day = now.getDay();
  
  if ((year > 50) && (year<2000))
  year += 1900;
  
  if (year <= 50)
  year += 2000;
  
  // Y2K bug fix

  Day = new MakeArray(7);
  Day[0]="Sunday";
  Day[1]="Monday";
  Day[2]="Tuesday";
  Day[3]="Wednesday";
  Day[4]="Thirsday";
  Day[5]="Friday";
  Day[6]="Saturday";
  
  Month = new MakeArray(13);
  Month[1]="January";
  Month[2]="February";
  Month[3]="March";
  Month[4]="April";
  Month[5]="May";
  Month[6]="June";  
  Month[7]="July";  
  Month[8]="August";
  Month[9]="September";   
  Month[10]="October";    
  Month[11]="November";    
  Month[12]="December";    

  Date = new MakeArray(32);
  Date[1]="1st";
  Date[2]="2nd";
  Date[3]="3rd";
  Date[4]="4th";
  Date[5]="5tht";
  Date[6]="6th";
  Date[7]="7th";
  Date[8]="8th";
  Date[9]="9th";
  Date[10]="10th";
  Date[11]="11th";
  Date[12]="12th";
  Date[13]="13th";
  Date[14]="14th";
  Date[15]="15th";
  Date[16]="16th";
  Date[17]="17th";
  Date[18]="18th";
  Date[19]="19th";
  Date[20]="20th";
  Date[21]="21st";
  Date[22]="22nd";
  Date[23]="23rd";
  Date[24]="24th";
  Date[25]="25th";
  Date[26]="26th";
  Date[27]="27th";
  Date[28]="28th";
  Date[29]="29th";
  Date[30]="30th";
  Date[31]="31st";




  
  dateStr = Day[day] + ', ' + Date[date] + ' ' + Month[month] + ' ' + year;
  
  function date_en()
  {
  
  document.write(dateStr);
  
  }

// -->  
