<!-- 

// General Javascript Utilities

//FUNC: showYear(sPreText, sPostText)
//DESC: Writes the current Year into web page with additional text if needed 
//Usage: showYear( sPreText, sPostText )

// sPreText - Text to add before year string
// sPostText - Text to add after year string

function showYear(sPreText, sPostText)
{
	curdate = new Date();
	year = curdate.getYear();
	
	if (year < 1900)
	{
		year = year+1900;
	}
	
	sYear1 = ("" + year);
	
	sYear = (sPreText + sYear1 + sPostText);

	document.write(sYear);
}

// -->