function verifyRegistrationForm() { var error=""; if(document.formregistr.name.value=="") error+='Enter your name!!\n'; //if(document.formregistr.salutation.selectedIndex==0) error+='Choose a salutation!!\n'; //if(document.formregistr.lastname.value=="") error+='Enter your last name!!\n'; //if(document.formregistr.house1.value=="") error+='Enter your house number!!\n'; //if(document.formregistr.streetaddress1.value=="") error+='Enter your street name!!\n'; //if(document.formregistr.city1.value=="") error+='Enter your city!!\n'; //if ((document.formregistr.province1.value=="") && (document.formregistr.state1.selectedIndex==0) ) error+='Enter your state/province!!\n'; //if ( (document.formregistr.province1.value!="") && (document.formregistr.postalcode1.value=="")) error+='Enter your postal code!!\n'; //if ( (document.formregistr.state1.selectedIndex!=0) && (document.formregistr.zipcode1.value=="")) error+='Enter your zip code!!\n'; //if(document.formregistr.country1.selectedIndex==0) error+='Enter your country!!\n'; if(document.formregistr.login.value=="") error+='Enter your login!!\n'; if(document.formregistr.password.value=="") error+='Enter your password!!\n'; if(document.formregistr.retype_password.value=="") error+='Retype your password!!\n'; if(document.formregistr.password.value!= document.formregistr.retype_password.value) error+='The two password fields contain different values!!\n'; if(document.formregistr.email.value=="") error+='Enter your e-mail address!!\n'; else if (document.formregistr.email.value.indexOf("@")==-1) error+='Incorrect e-mail address!!\n'; //if(document.formregistr.iagree.checked==false) error+='You must agree!!\n'; if (error!="") alert(error); else document.all['safesubmit'].outerHTML = 'Please Wait ...'; return error==""; }