function jumpPage(newLoc) {
	if (newLoc.options[newLoc.selectedIndex].value != "") {
		window.location.href = "/" + newLoc.options[newLoc.selectedIndex].value
	}
}

function newWindow(popupPage, winWidth, winHeight) {
	if (winWidth == null) {
		winWidth = 480;
	}
	if (winHeight == null) {
		winHeight = 360;
	}
	popupWindow = window.open(popupPage, 'popupWindow', 'toolbar=no,location=no,scrollbars=yes,width='+winWidth+',height='+winHeight);
	popupWindow.focus();
}		
