function getYear() {
	document.write(new Date().getFullYear());
}
function getLastUpdated() {
}
function printVersion() {
	var strURL = String(document.location);
	var strFeatures = "height=400,width=600,resizable,toolbar,status,scrollbars,menubar";
	var newWin;
	if (strURL.indexOf("?") != -1)
		newWin = window.open(document.location + "&print=1", "print", strFeatures);
	else
		newWin = window.open(document.location + "?print=1", "print", strFeatures);
	newWin.focus();
}
