//method for easy popup windows

function popupWindow(page) {
	window.open(page,'PHH','width=550,height=500,scrollbars=yes,resizable=yes');
}

function popupPDFWindow(page) {
	window.open(page,'PDF','width=700,height=500,scrollbars=yes,resizable=yes');
}


//variables and method for writing the current year
var Today = new Date();
var thisYear = Today.getFullYear();

function writeYear() {
	document.write(thisYear);
}