function validateAdvancedSearch() {
	var theMessage = "The following fields are required: \n";
	var noErrors = theMessage;
 
	if (document.aSearchForm.q.value=="") {
		theMessage = theMessage + "\n --> Search Field";
	}	
	
	if (document.aSearchForm.target.value=="") {
		theMessage = theMessage + "\n --> Site to Search";
	}	
		
	// If no errors, submit the form

	if (theMessage == noErrors) {
		return true;
	} else {
		// If errors were found, show alert message
		alert(theMessage);

		return false;
	}
}