function validate_form ( )
{
	valid = true;

        if ( document.committeeform.name.value == "" )
        {
                alert ( "Please enter Contact Name in the 'name' box." );
                valid = false;
        }

    if ( document.committeeform.business.value == "" )
        {
                alert ( "Please fill in the 'business name' box." );
                valid = false;
        }

    if ( document.committeeform.phone.value == "" )
        {
                alert ( "Please fill in the 'phone' box." );
                valid = false;
        }

// only allow 0-9, hyphen and comma be entered
var checkOK = "0123456789-,";
var checkStr = committeeform.phone.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0;  i < checkStr.length;  i++)
{
ch = checkStr.charAt(i);
for (j = 0;  j < checkOK.length;  j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter the phone number as 123-123-1234 format.");
committeeform.phone.focus();
return (false);
}

    if ( document.committeeform.email.value == "" )
        {
                alert ( "Please fill in the 'email' box. If you do not have email use the word none" );
                valid = false;
        }

        return valid;
}