function validateform(){
	
	if (window.XMLHttpRequest) {
		liveSearchReq = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		liveSearchReq = new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	var thetime= "&thetime="+new Date().getTime();
	liveSearchReq.open("GET","validateform.cfm?Security_Code="+document.forms.theform.Security_Code.value+"&name="+document.forms.theform.name.value+"&tel="+document.forms.theform.tel.value+"&email="+document.forms.theform.email.value+"&comments="+document.forms.theform.comments.value+"&Security_Input="+document.forms.theform.Security_Input.value+thetime,false);
	liveSearchReq.send(null);
	
	if (liveSearchReq.readyState == 4) {
		//var res = document.getElementById("sally");
		//res.innerHTML = liveSearchReq.responseText;
	}
}
