var buttonClicked = false;
function changeButtonText(form)
{
	var button = form.emailbutton;
	if (buttonClicked) return false;
	if (button != null) {
		button.value = "Sending email. Please wait...";
		buttonClicked = true;
		form.submit();
	}
}
function goToContact(form) {
	form.action="/cgi-bin/contactjandj.cgi";
	changeButtonText(form);
}
