<!--

// FUNZIONI VALIDAZIONE FORM ricerca ASTE in SARDEGNA

// valida form ricerca lotto
function v_searchone() {
	var theForm = document.forms['srcbene'];
	var errMsg = "";
	var setfocus = "";

	if ( (theForm['tipobene'].value=="") && (theForm['srchbenemob'].value=="") && (theForm['srchprov'].value=="") && (theForm['com'].value=="") && (theForm['range_prz'].value=="") ) {
		errMsg = "Selezionare almeno un'opzione";
		setfocus = "['tipobene']";
	}
	 
	if (errMsg != ""){
		alert(errMsg);
		eval("theForm" + setfocus + ".focus()");
	} else { 
	 theForm.action='?pag=proc_all&op=ric'; 
	 document.srcbene.submit();	 
	}
}



//-->
