// JavaScript Document


function CheckContactFields() {
	
	//if(document.ContactForm.State.selectedIndex == 0) {
		//alert("Your state is a required field.");
		//return false;
	//}
	
	//Check the regular ship zipcode
	//if(document.ContactForm.ZipCode.value.length < 5) {
		//alert("The zip code must be a valid 5 digit zip code.");
		//return false;
	//}
	
	
	
		
	//Check to make sure the captcha is correct	
	TheuKey = document.ContactForm.uKey.value;			
	ThehKey = document.ContactForm.hKey.value;
	
	if(TheuKey == '' || ThehKey == '') {
		CaptchaFound = 0;
	}	
	else {	
		
		var strURL = "http://www.dryerventwizard.com/Ajax/MyFunctions.cfc?Method=FindCaptchaKey&TheuKey=" + TheuKey + "&ThehKey=" + ThehKey;
		
		if(window.XMLHttpRequest) {
			var objHTTP = new XMLHttpRequest();
			objHTTP.open("GET", strURL, false);					
			objHTTP.send(null);			
			CaptchaFound = dpWDDX('deserialize',objHTTP.responseText);				
		}
		else if (window.ActiveXObject) {
			var objHTTP = new ActiveXObject("Microsoft.XMLHTTP");		
			objHTTP.open("GET",strURL,false);				
			objHTTP.send(null);		
			CaptchaFound = dpWDDX('deserialize',objHTTP.responseText);
		}
	}	
	
	if(CaptchaFound == 0) {			
		alert("The verification image key that you entered is incorrect. Please check it and try again.");
		return false;
	}	
	
}

