function vacanze_destinazione(destinazione){
  //alert(destinazione);
  location.href = "index.php?pagina=vacanze&destinazione='"+destinazione+"'";
} // end function

function check_form_invia(){

  //alert(document.forms[0].nominativo.value.length);
  if (document.forms[0].nominativo.value.length == 0) {
      alert("ATTENZIONE !!! Manca il Nominativo.");
      document.forms[0].nominativo.focus();
      return(0);
  } // end if
  if (document.forms[0].email.value.length == 0) {
      alert("ATTENZIONE !!! Manca l'Indirizzo Email.");
      document.forms[0].email.focus();
      return(0);
  } // end if
  if (document.forms[0].descrizione.value.length == 0) {
      alert("ATTENZIONE !!! Manca la Descrizione.");
      document.forms[0].descrizione.focus();
      return(0);
  } else {
      check_01 = (document.forms[0].descrizione.value.indexOf("http"));
      check_02 = (document.forms[0].descrizione.value.indexOf("href"));
      if ((check_01 > 0) || (check_02 > 0)) {
          alert("ATTENZIONE !!! Caratteri non consentiti.");
          //history.back();
          return(1);
      } // end if
  } // end if

  document.forms[0].submit();
  
  //location.href = "index.php?pagina=vacanze&destinazione='"+destinazione+"'";
} // end function


