// JavaScript Document
function validate_form ( )
{
    valid = true;

    if ( document.getElementById("emailForm").name.value == "" ) {
        alert ( "Please fill in the 'Name:' box." );
        valid = false;
    }
		
		if ( document.getElementById("emailForm").email.value == "" ) {
        alert ( "Please fill in the 'Email' box." );
        valid = false;
    }
		
    return valid;
}
