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(year<1900){year = year+1900}

		   if(month_number == 0){month = 'January';}
		   if(month_number == 1){month = 'February';}
		   if(month_number == 2){month = 'March';}
		   if(month_number == 3){month = 'April';}
		   if(month_number == 4){month = 'May';}
		   if(month_number == 5){month = 'June';}
		   if(month_number == 6){month = 'July';}
		   if(month_number == 7){month = 'August';}
		   if(month_number == 8){month = 'September';}
		   if(month_number == 9){month = 'October';}
		   if(month_number == 10){month = 'November';}
		   if(month_number == 11){month ='December';}

		   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';}

		   var date_to_show = ' ' + month + ' ' + day_of_month + ', ' + year;

		/*  Took out the variable day_of_week for now. I didnt think it was needed. If it is needed
			then just add it to the end of "var date_to _show" so that the end will look like this:

			var date_to_show = '   ' + month + ' ' + day_of_month + ', ' + year + ', ' + day_of_week ;
		*/

		   document.write(' <font face="arial" size="1"><u>' + date_to_show + '</u></font>');

		} //end display date

		function cal()
		{
		window.open("./bla2corp/calendar.htm", "Calendar", "height=275,width=310,screenX=250,left=250,screenY=250,top=250,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,channelmode=0,resizable=1,scrollbars=0,status=0,toolbar=0")
		}
