function validateForm() {
	if (document.form.name.value == "" ) {
		alert("You must enter your name.\nDon't worry, your information will be kept completely confidential.");
		document.form.name.focus();
		return false;
	}
	if (document.form.email.value == "") {
		alert("You must enter your email address.\nDon't worry, your information will be kept completely confidential.");
		document.form.email.focus();
		return false;
	}
	if (document.form.message) {
		if (document.form.message.value == "") {
			alert("You must type a message.");
			document.form.message.focus();
			return false;
		}
	}
	return true;
}

function clear() {
	alert("Hi");
	/*document.form.name.value = "";
	document.form.phone.value="";
	document.form.email.value="";
	document.form.best_time.value="";
	document.form.subject.valule="";
	document.form.message.value="";*/
	return true;
}
	