/* 
	Copyright (c) 2003 Macromedia, Inc. 
	dropdown jump-menu scripts	

*/
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;
} else if (selectedLink == '#') {
document[formID][dropdownID].selectedIndex = 0;
}
}

