var now = new Date();
var dYear = now.getYear();
if (dYear < 1900) {
	dYear += 1900;
}

function toPage(page) {
	location.href = page;
}


/* Center Popup Window --------------------------- */
function centerWindow(page,sWidth,sHeight){
		popWindow = window.open(page,'','toolbar=no,menubar=no,status=no,scrollbars=no,resizeable=no,width='+sWidth+',height='+sHeight);		
		popWindow.moveTo(((screen.width/2)-(sWidth/2)),((screen.height/2)-((sHeight/2)+20)))
		}
		
		
/* Rollovers not using CSS ----------------------- */
function rollOv(which) {
	document.getElementById(which).style.backgroundPosition = "0 -28px";
}

function rollOu(which) {
	document.getElementById(which).style.backgroundPosition = "0 0";
}


