function display_date() {

   date = new Date();

   var day_of_week_number = date.getDay();
   var day_of_month = date.getDate();
   var month_number = date.getMonth();
   var year = date.getYear();
   var day_of_week = '';
   var month = '';

   if(month_number == 0){month = 'Jan.';}
   if(month_number == 1){month = 'Feb.';}
   if(month_number == 2){month = 'Mar.';}
   if(month_number == 3){month = 'Apr.';}
   if(month_number == 4){month = 'May';} 
   if(month_number == 5){month = 'Jun.';}
   if(month_number == 6){month = 'Jul.';}
   if(month_number == 7){month = 'Aug.';}
   if(month_number == 8){month = 'Sep.';}
   if(month_number == 9){month = 'Oct.';}
   if(month_number == 10){month = 'Nov.';}
   if(month_number == 11){month = 'Dec.';}


   if(day_of_week_number == 0){day_of_week = 'Sunday';}
   if(day_of_week_number == 1){day_of_week = 'Monday';}
   if(day_of_week_number == 2){day_of_week = 'Tuesday';}
   if(day_of_week_number == 3){day_of_week = 'Wednesday';}
   if(day_of_week_number == 4){day_of_week = 'Thursday';}
   if(day_of_week_number == 5){day_of_week = 'Friday';}
   if(day_of_week_number == 6){day_of_week = 'Saturday';}

   if(year == 99) {year = '19' + year;}
   if(year < 2000) {year += 1900;}
   
   var date_to_show = '' + day_of_week + ',' + '&nbsp;&nbsp;' + month + ' ' + day_of_month + ', ' + year ; 

   document.write(date_to_show);
}

function display_year(){	
	date = new Date();
	var year = date.getYear();
	if(year < 1900) { year += 1900; }
	document.write(year);
	}

