// JavaScript Document
function goTo(toPage, pgAddress) {
	if (toPage != curPage) {
		location.href=pgAddress;
	}
}

function goToNL(toPage, pgAddress) {
	location.href=pgAddress;
}