function validate_form ()
{
    valid = true;

    if ( document.newsletter_form.email.value == "" )
    {
        alert ( "Please fill in the Email box." );
        valid = false;
    }

    return valid;
}