function quickLinks2 (selectElement) {
	
	var linkURL = selectElement.options[selectElement.selectedIndex].value;

	if (linkURL != "") {
		document.location = linkURL;
	}
}

// clear default contents of text fields on first click
function clearDefault(element) {

	if(element.value=="SEARCH UCF") {
	   element.value="";
	   element.style.color="#000";
	   return;
	}
	
	if(element.value=="") {
		element.value="SEARCH UCF";
		element.style.color="#999";
		return;
	}
	
}

function resetSearch() {
	
	element = document.forms.sForm.q;
	
	if (element.value != "SEARCH UCF") {
		element.style.color="#000";
	}
}
			
		
		
	