//This js opens a link from a dropdown select box in a new window and sets focus on that window. -ethan lance
function MM_openBrWindow(URL,winName,features) { //v2.0
	newWindow = window.open(URL,'microsite','');
	newWindow.focus();
	return false;
}

function dropdownHandler(formID,dropdownID) { 
	var selectedLink = document[formID][dropdownID].options[document[formID][dropdownID].selectedIndex].value;
 	if (selectedLink != '#') {
    //window.location=document[formID][dropdownID].options[document[formID][dropdownID].selectedIndex].value; 
	URL = document[formID][dropdownID].options[document[formID][dropdownID].selectedIndex].value; 
	MM_openBrWindow(URL);
	return false;
  } else if (selectedLink == '#') {
  	document[formID][dropdownID].selectedIndex = 0; 
  }
} 