			/*
			// usage:  NewWindow(this.href,'privacy','520','475')
			function NewWindow( url, winName, w, h) {
			
				//alert('Hey, I told you not to click that!');
				privacyWin = popupWin(url, winName, w, h, 'resizable=1,scrollbars=1,status=1', 'LT','W'); 
				privacyWin.focus();
			}
			// usage: populateCountry(document.landowners,???)
			function populateCounty(inForm,selected) {
				if (selected == "") {
					return;
				}
	
				var selectedArray = eval("arr" + selected);
	
				while (selectedArray.length < inForm.CountyID.options.length) {
					inForm.CountyID.options[(inForm.CountyID.options.length - 1)] = null;
				}
	
				for (var i=0; i < selectedArray.length; i++) {
					eval("inForm.CountyID.options[i]=" + "new Option" + selectedArray[i]);
				}
			}
			*/

			function confirmSubmit() {
			  if (document.landowners.FirstName.value == '') {
			    alert("Sorry, you need to provide your First Name!");
			    document.landowners.FirstName.focus();
			  }
			  else if (document.landowners.LastName.value == '') {
			    alert("Sorry, you need to provide your Last Name!");
			    document.landowners.LastName.focus();
			  }
			  else if (document.landowners.Email1.value == '') {
			    alert("Sorry, you need to provide your Email!");
			    document.landowners.Email1.focus();
			  }
			  else if (document.landowners.Email2.value == '') {
			    alert("Sorry, you need to confirm your Email!");
			    document.landowners.Email2.focus();
			  }
			  else if (document.landowners.Email2.value != document.landowners.Email1.value) {
			    alert("Sorry, your Email and Confirm Email do not match!");
			    document.landowners.Email1.focus();
			  }
			  else if (isValidEmail(document.landowners.Email1.value) == false) {
			    alert("Sorry, your Email appears to be invalid!\nPlease provide a properly formed email address.");
			    document.landowners.Email1.focus();
			  }
			  else {
			    document.landowners.submit();
			  }
			}
			
