function bwms_email_check()
{
	if (document.bhccu.first_name.value.length == 0)
	{
		alert("Please enter your first name.");
		document.bhccu.first_name.focus();
		return false;
	}
	if (document.bhccu.last_name.value.length == 0)
	{
		alert("Please enter your last name.");
		document.bhccu.last_name.focus();
		return false;
	}
// Determine if the "E-Mail Address" is present and in a valid format.
	var retval = validate_email(document.bhccu.email, document.bhccu.email.value);
	if (retval == false)
		return false;
// Determine if the "Telephone Number" is present and in a valid format.
	var retval = validate_phone(document.bhccu.telephone, document.bhccu.telephone.value);
	if (retval == false)
		return false;
	if (document.bhccu.email_message.value.length == 0)
	{
		alert("Please enter your comments.");
		document.bhccu.email_message.focus();
		return false;
	}
// All tests passed. Allow the "Comments" to be submitted.
	document.bhccu.action="bwms_email_send.asp";
	return true;
}

