function fv(theForm)
{
var invio="http://www.sanihelp.it/dossier/index.php";
  if (theForm.chiave.value.trim() == "")
  {
    alert("Prego inserire almeno un parametro di ricerca.");
    theForm.chiave.focus();
    return (false);
  }
  if (theForm.chiave.value.toString().indexOf(",") != -1)
  {
    alert("Usare caratteri validi come chiavi di ricerca.");
    theForm.chiave.focus();
    return (false);
  }	
  
if (theForm.scelta[0].selected == true )
  {
	if (theForm.cerca_dove[0].checked) {
		document.form_dossier.cerca_dove.value=0;
	}else{
		document.form_dossier.cerca_dove.value=1;
	}
	document.form_dossier.chiave.value=theForm.chiave.value;
	document.form_dossier.submit();
  }
  
if (theForm.scelta[1].selected == true )
  {
	if (theForm.cerca_dove[0].checked) {
		document.form_enciclopedia.dett_ric.value=1;
	}else{
		document.form_enciclopedia.dett_ric.value=0;
	}
	document.form_enciclopedia.titolo.value=theForm.chiave.value;
	document.form_enciclopedia.submit();
  }
}

