


/** Jumps to a link from a select drop-down box. Gets passed a select object, with the value of
	each element being the URL to jump to **/
function jumpToLink_DropDown(selectObj){
	var selectedopt=selectObj.options[selectObj.selectedIndex];
	window.location=selectedopt.value;
}