
  today = new Date();
  month = today.getMonth();

  if (month == 0) month_name='January';
  if (month == 1) month_name='February';
  if (month == 2) month_name='March';
  if (month == 3) month_name='April';
  if (month == 4) month_name='May';
  if (month == 5) month_name='June';
  if (month == 6) month_name='July';
  if (month == 7) month_name='August';
  if (month == 8) month_name='September';
  if (month == 9) month_name='October';
  if (month == 10) month_name='November';
  if (month == 11) month_name='December';

  date = today.getDate(); 
  year=today.getYear();

  if (year < 2000) 
  year = year + 1900; 


 function todaysdate() {

  document.write ('<img src=\"images/',month_name, '.gif\" border=0><img src=\"images/',date, '.gif\" border=0><img src=\"images/',year, '.gif\" border=0>');
 }
 
 
 function copyright() {
  document.write (year);
 }