<!-- hide this script from non-javascript-enabled browsers

function go_url(dropdown)
{
	var URL = dropdown.options[dropdown.selectedIndex].value;
	if (URL != "none" && URL != "")
	{
		var i = URL.indexOf("newwin:");
		if (i==0)
		{
			URL = URL.substring(7,URL.length);
			openWindow(URL);
		}
		
		else
		{
			location = dropdown.options[dropdown.selectedIndex].value
		}
	}
}
//-->