site = ""; // Do not include the final "/"
function getPage(frm, menu1) {
	with (frm) {
		str = menu1.options[menu1.selectedIndex].value;
		url = site + "/" + str;
		window.location.href = url;
   }
}

function getPageExternal(frm, menu1) {
	with (frm) {
		str = menu1.options[menu1.selectedIndex].value;
		url = str;
		window.location.href = url;
   }
}


