function checkForm(info) {
      if (info.firstName.value.length == 0 || info.lastName.value.length == 0) {
  		    alert("Hunter Gibb Design requires the name of a person to contact in regards to this application.");
  				return false;
  		}
      if (info.num1.value.length == 0) {
  		    alert("Please provide at least one phone number.");
  				return false;
  		}
  		if (info.email.value.length == 0) {
			    alert("It is essential that you provide an email address.");
		      return false;
		  }
  		if (info.pass1.value.length == 0) {
			    alert("A password is essential to log in.");
		      return false;
		  }
  		if (info.pass1.value.length != info.pass2.value.length) {
			    alert("You have mistyped a password.");
		      return false;
		  }
      if (info.address1.value.length == 0 || info.city1.value.length == 0) {
  		    alert("At least one delivery address is required.");
  				return false;
  		}
  		if (info.state.value.length == 0) {
			    alert("A state, province or district is required.");
		      return false;
		  }
  		if (info.postCode.value.length == 0) {
			    alert("A post code or zip code is required.");
		      return false;
		  }
  		if (info.country.value == "") {
			    if (confirm("Are you certain you can not provide a country?")) {
		          return true;
		      } else {
		          return false;
					}
		  }
}
function checkForm2(info2) {
  		if (info2.unsubscribe.value.length == 0) {
			    alert("A valid email address is required.");
		      return false;
		  }
}
function checkForm3(info3) {
      if (info3.black.value < 1 && info3.green.value < 1 && info3.red.value < 1 && info3.blue.value < 1) {
  		    alert("A number has not been entered in the box adjacent to Quantity.");
  				return false;
  		}
			
			if (info3.memberEmail.value.length == 0 || info3.memberPass.value.length == 0) {
          if (info3.firstName.value.length == 0 || info3.lastName.value.length == 0) {
      		    alert("Hunter Gibb Design requires the name of a person to contact in regards to this application.");
      				return false;
      		}
          if (info3.num1.value.length == 0) {
      		    alert("Please provide at least one phone number.");
      				return false;
      		}
      		if (info3.email.value.length == 0) {
    			    alert("It is essential that you provide an email address.");
    		      return false;
    		  }
          if (info3.address.value.length == 0 || info.city.value.length == 0) {
      		    alert("At least one delivery address is required.");
      				return false;
      		}
      		if (info3.state.value.length == 0) {
    			    alert("A state, province or district is required.");
    		      return false;
    		  }
      		if (info3.postCode.value.length == 0) {
    			    alert("A post code or zip code is required.");
    		      return false;
    		  }
      		if (info3.country.value == "") {
    			    if (confirm("Are you certain you can not provide a country?")) {
    		          return true;
    		      } else {
    		          return false;
    					}
    		  }
			}
			if (info3.firstName.value.length == 0 || info3.lastName.value.length == 0) {
      			if (info3.memberEmail.value.length == 0) {
      			    alert("A username (email address) is required.");
      		      return false;
      			}
      			if (info3.memberPass.value.length == 0) {
      			    alert("A password is required.");
      		      return false;
      			}
			}
}
function checkForm4(info4) {
      		if (info4.email.value.length == 0) {
    			    alert("You must enter an email address.");
    		      return false;
    		  }
}		
