function formReset(){	if ( confirm('Do you really want to delete all your entries on this form?')) {		var theForm = document.getElementById("propertyFind")		for(i=0; i<theForm.elements.length; i++){			if(theForm.elements[i].type == "button"){			//			}			if(theForm.elements[i].type == "text" || theForm.elements[i].type == "textarea"){			theForm.elements[i].value=""			}			else if(theForm.elements[i].type == "checkbox"){			theForm.elements[i].checked=false			}			else if(theForm.elements[i].type == "select-one"){			theForm.elements[i].selectedIndex=0			}		}	}	else return}