function checkWholeForm(itdform) {
		    var why = "";
		    why += isEmptyName(itdform.realname.value);
		    why += isEmptyTitle(itdform.title.value);
		    why += isEmptyAddress1(itdform.address1.value);
		    why += isEmptyCity(itdform.city.value);
		    why += isEmptyCounty(itdform.county.value);
		    why += isEmptyPostCode(itdform.postcode.value);
		    why += checkPhone(itdform.telephone.value);
		    why += checkEmail(itdform.email.value);
		    if (why != "") {
		       alert(why);
		       return false;
		    }
		return true;
		}
