/* password and username validation for registration. */


function formVerify(theForm) {

  	if (theForm.fullname.value == '') {
		alert('Please enter your Full Name.');
		theForm.fullname.focus();
		return (false);
	}


  	if (theForm.address1.value == '') {
		alert('Please enter an Address for Mailing reasons.');
		theForm.address1.focus();
		return (false);
	}
	

  	if (theForm.city.value == '') {
		alert('Please enter your City.');
		theForm.city.focus();
		return (false);
	}	
	
	if (theForm.country.value == '') {
		alert('Please enter your Country.');
		theForm.country.focus();
		return (false);
	}
	
  	if (theForm.zipcode.value == '') {
		alert('You must enter a Zip Code for mailing reasons.');
		theForm.zipcode.focus();
		return (false);
	}
}
