<!--

function bookmark () {
	scelta = confirm('Aggiungimi ai preferiti e vienimi a trovare ogni giorno!');
	if (scelta) {
	window.external.AddFavorite('http://www.1hotel.it', '1Hotel.it: prenota il tuo albergo con tariffe super scontate!');
	} else {

	}
}

function confermaElimina() {
	scelta = confirm('Siete sicuri di volerlo cancellare?');

	return scelta;

}


function confermaProsegui() {
	scelta = confirm('Sicuro di voler procedere?');

	return scelta;

}


function validate_mail (inp_str) {
	return	(inp_str.search (/\w+@\w+(.\w+)+/) != -1);
}

function Form1_Validator(theForm)
{

  if (theForm.nome.value == "")
  {
    alert("Inserite il Vs. nome\n\rPlease insert your name.");
    theForm.nome.focus();
    return (false);
  }

  if (theForm.oggetto.value == "")
  {
    alert("Inserire l'oggetto della mail\n\rPlease Insert the email subject");
    theForm.oggetto.focus();
    return (false);
  }


  if (theForm.mittente.value == "" || theForm.mittente.value.indexOf('@', 0) == -1) {

      alert("Email non valido!");
      theForm.mittente.focus();
      return (false);

      }

  if (!validate_mail (theForm.mittente.value)) {

      alert("Email non valido!");
      theForm.mittente.focus();
      return (false);
  }


  return (true);
}


//-->
