function checkform() {
	if (document.send.name.value == "") {
		alert("Please fill out your name!");
		send.name.focus();
	}
	else if (document.send.email.value == "") {
		alert("Please fill out your e-mail address!");
		send.email.focus();
	}
	else if (document.send.message.value == "") {
		alert("Please type a message to be sent!");
		send.message.focus();
	}
	else {
		send.submit();
	}
	return;
}

