/* 
* *** quickLinksSubmit ( formName ) ***
* function submits the form and calls the corresponding URL when the quicklink dropdown menu is used.
* Menu is located in the 2008 footer, /common/footer_2008.jsp
*/
function quickLinksSubmit(formName) {
	var els=document.getElementById(formName);
	var dest = els.gotoUri.options[els.gotoUri.selectedIndex].value
	var externalURL = new RegExp ('^http\:\/\/');
	if ( ( els.gotoUri.selectedIndex > 0 ) && ( externalURL.test(dest) !== false ) ) {
		location.href = dest;
	} else {
		location.href="/"+dest;
	}
	return false
}

