// Begin functions that help locations drop down menu selections open in a new window
function there(dropdown) {
	var URL = dropdown.options[dropdown.selectedIndex].value;
   if(URL!="") {
	  parent.framename.location.href= URL
   }
}

function here(dropdown) {
	var URL = dropdown.options[dropdown.selectedIndex].value;
	if(URL!="") {
		document.location.href = URL
	}
}
function spawn(dropdown) {
var URL = dropdown.options[dropdown.selectedIndex].value;
  if(URL!="") {
	 window.open(URL);
  }
}