// JavaScript Document
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
		}
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


