	TodaysDate = new Date();

	CurrentYear = TodaysDate.getYear()
	  {if (CurrentYear >= 0 & CurrentYear < 99) CurrentYear = TodaysDate.getYear() + 2000;
			{if (CurrentYear >= 99 & CurrentYear < 200) CurrentYear = TodaysDate.getYear() + 1900;}} // ensures year is 4 digits long
	CurrentMonth = TodaysDate.getMonth() + 1;
	CurrentDate = TodaysDate.getDate();

	CurrentAge = CurrentYear-BirthYear
		{if (CurrentMonth < BirthMonth) CurrentAge = CurrentAge -1;
		  {if (CurrentMonth == BirthMonth & CurrentDate < BirthDate) CurrentAge = CurrentAge -1;
			  {if (CurrentMonth == BirthMonth & CurrentDate == BirthDate) CurrentAge = CurrentAge + "&nbsp;&nbsp;<i>(HAPPY BIRTHDAY!!)</i>";}}}

	YearsOfExperience = CurrentYear - ExperienceYear + 1; // adds 1 year of experience, as per Mark Tibbetts - 5/9/2006

	if (CurrentMonth < ExperienceMonth) YearsOfExperience = YearsOfExperience-1; // increases years of experience by 1 on anniversary month
