function validate(f) {
	var bErrorFound = false;
	var strErrorMsg = 'Please correct the following problems:\n'

	if (f.vName.value.replace(/\s*/g,'').length == 0 && f.vCity.value.replace(/\s*/g,'').length == 0 && f.vState.selectedIndex == 0 && f.vZip.value.replace(/\s*/g,'').length == 0) {
		strErrorMsg = strErrorMsg + '\n - Must enter at least one search criteria';
		bErrorFound = true;
	}

	if (bErrorFound == true) {
		alert(strErrorMsg);
		return false;
	} else {		
		return true;	
	}
}


