//v1.1
//Copyright 2006 Adobe Systems, Inc. All rights reserved.



function YearsTeaching()
{

	var y_years = new Array("0th", "1st", "2nd", "3rd", 
		"4th", "5th", "6th", "7th", "8th", "9th");
		

	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth();
	var curr_year = d.getFullYear(); 
	
	var yy = curr_year;
	var zz = 10;
	yy = yy - 1987;
	zz = yy % 10;
	yy = yy / 10;
	yy = Math.floor(yy);
	var xx = y_years[zz];
	document.write(yy + xx);

}

function CurrentYear()
{


	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth();
	var curr_year = d.getFullYear();
	
	var yy = curr_year;
	document.write(yy);

}