// JavaScript Document
<!--

function validate_form ( )
{
	valid = true;

        if ( document.contact-form.name.value == "" )
        {
                alert ( "Please fill in the 'Your Name' box." );
                valid = false;
        }

        if ( ( document.contact-form.from.value == "" ) ( ))
        {
                alert ( "Please enter your email address so we can get back to you" );
                valid = false;
        }


        if ( document.contact-form.comments.value == "" )
        {
                alert ( "Oops! No comments entered. We're not mind readers, you know!" );
                valid = false;
        }



        return valid;
}

//-->

