<!--

function check_lastmin() {

// Termine

  if (document.form_lm.termine.value == "") {
    alert("Inserisci il termine da cercare.");
    document.form_lm.termine.focus();
    return (false);
  }

// Dove

  if (document.form_lm.tipo.value == "prezzo") {

      var valid = "0123456789"
      var ok = "ok";
      var temp;
      for (var i=0; i<document.form_lm.termine.value.length; i++) {
	      temp = "" + document.form_lm.termine.value.substring(i, i+1);
	      if (valid.indexOf(temp) == "-1") ok = "no";
 	      }
      if ( ok == "no") {
      alert("Il prezzo non è valido.");
      document.form_lm.termine.focus();
      return (false);
    }

  }

return true;
}

// -->
