function showCurrentYear()
{
	var now = new Date();
	var theYear = now.getYear()
  if (theYear < 2000)
  {
  	theYear += 1900;
  }
	document.write(theYear);
}
