//---------------------------------------------------------------------------
// Function used by misc_searchbox.jsp to control form elements
//---------------------------------------------------------------------------
function Search() {
		
	// Get search property and term values from form elements
	var terms 	= document.search_terms_form.st1.value;	
	//added escape function to handle special character search for ENH-27
	location.href = "/wb/Search?st1="+escape(terms);
	
}
