
function gotoPage(pagePath, target) {
	switch (target) {
		default:
		case "_self":
			document.location=pagePath;
			break;
		case "_blank":
			window.open(pagePath);
			break;
	}
}



