	function validateForm(alertText){		
		//Variable SubmitForm is used to check if the formm has errors, must remain at all times.
			var submitForm =true;
			var email = $("#email").val();
			var name  = $("#name").val();
			var zip  = $("#zip").val();
			var address = $("#address").val();
			if(zip=="" || name=="" || zip=="" || address==""){
				submitForm=false;
			}
			
			if(!submitForm){
				var errorTextElem = $("#formErrorText");
				errorTextElem.show();
				//reset html
				errorTextElem.html("");
				errorTextElem.append("<strong>"+alertText + "</strong>");
				$('html').animate({scrollTop:0}, 'fast');
				return false;
			}//end if(!submitForm)
			else{
				return true;
			}
		
	}
