
// Validate Short Form -----------------------------------

function Validate()
{
	//--- Make sure the Name was entered
	if (document.frmContacts.name.value.length == 0) {
		alert("Please enter a name to continue.");
		document.frmContacts.name.focus();
		document.frmContacts.name.select();
		return false;
	}
	
	//--- Make sure the EMail Address was entered
	if (document.frmContacts.email.value.length == 0) {
		alert("Please enter an email address to continue.");
		document.frmContacts.email.focus();
		document.frmContacts.email.select();
		return false;
	}

	//Submit the Contact Us Form
	document.frmContacts.submit();
	return true;
}
