<!--

var bookmarkurl="http://www.clubcommodity.com"
var bookmarktitle="ClubCommodity.com"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.nominativo.value == "")
  {
    alert("Inserire il Nominativo.");
    theForm.nominativo.focus();
    return (false);
  }
  
  
if (theForm.citta.value == "")
  {
    alert("Inserire la Cittą");
    theForm.citta.focus();
    return (false);
  }
  
  
  if (theForm.provincia.value == "")
  {
    alert("Inserire la Provincia");
    theForm.provincia.focus();
    return (false);
  }  
  
  
   
  if (theForm.email.value == "" || theForm.email.value.indexOf('@', 0) == -1) 
     {
      alert("Email non valido!");
      theForm.email.focus();
      return (false);

      }

   if (theForm.login.value == "")
  {
    alert("Inserire la Login.");
    theForm.login.focus();
    return (false);
  }
 
  if (theForm.password.value == "" || theForm.password.value !=theForm.password2.value )
  {
    alert("Inserire la Password");
    theForm.password.focus();
    return (false);
  }

  return (true);
}


function confermaElimina() {
	scelta = confirm('Siete sicuri di volerlo cancellare?');

	return scelta;

}


function confermaProsegui() {
	scelta = confirm('Sicuro di voler procedere?');

	return scelta;

}

//-->