			function iVerify(iVerify_Code) {
				if (window.XMLHttpRequest) {
					var xmlhttp=new XMLHttpRequest();
				}else if (window.ActiveXObject) {
					var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
				xmlhttp.open("POST","/iVerify/verify.cgi",false);
				xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
				var tag = "iVerify_Code="+iVerify_Code;
				//alert(tag);return;
				xmlhttp.send(tag);
				if (parseInt(xmlhttp.responseText) == 1)
					return true;
				return false;
			}
			function do_check(me,tag,val){ 
				if (myForm.Check(me)){
					if (iVerify(me.iVerify_Code.value) == true){
						return myForm.Submit(me,tag,val);
					}else{
						document.getElementsByName('iVerify_Code')[0].value = "";
						document.getElementsByName('iVerify_Msg')[0].innerHTML = "Invalid Code";
					}
				}
				return false
			}
			var myForm = new Check_Form();
				myForm.add_item('attraction','Attraction Name','Length',5);
				myForm.add_item('category_id','Category','Length',1);
				myForm.add_item('street','Attraction Street','Re','.+ .+');
				myForm.add_item('city','Attraction City','Length',3);
				myForm.add_item('state','Attraction State/Prov.','Length',2);
				myForm.add_item('country','Attraction Country','Length',3); 
				myForm.add_item('iVerify_Code','Verification','Length',2);

