function validate(theForm) {
	if ((theForm.address.value == "") && (theForm.city.value == "") && (theForm.state.value == "") && (theForm.zipcode.value == "")) {
		alert("Please enter at least one field's information.");
		return false;
	}
	return true
}

function assembleGoogle(theForm) {
	var otherForm = document.getElementById("mapquest");z
	theForm.q.value = otherForm.address.value + ", " + otherForm.city.value + ", " + otherForm.state.value + " " + otherForm.zipcode.value;
	return validate(otherForm);
}