// JavaScript Document
<!--
function goaway (navid) {
	eval("var navbox = document.getElementById('" + navid + "');");
	destination = navbox.options[navbox.selectedIndex].value;
	if (destination) { 
		top.location.href = destination;
	// window.open (destination,"orangerpress");
	}
}
//-->