<!--
function validate_form ( )
{
	valid = true;

		if ( document.newsletter_form.a_name.value == "" )
        {
                alert ( "Please fill in the 'Your Name' box." );
                valid = false;
        }

		if ( document.newsletter_form.b_email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }

        return valid;
}

//-->