<!--

function validate_form ( )
{
	valid = true;

        if (( document.contact_box.count.value == "seventeen" ) || ( document.contact_box.count.value == "17" ))
        {
                valid = true;
        } else {
                alert ( "Please enter the correct answer for our spam filter, it must be spelled out in lowercase (all one word, no dashes or slashes)" );
                valid = false;			
		}


        return valid;
}

-->