function validate_form ( )
{
    valid = true;

    if ( document.xBP_Price.email.value == "" )
    {
        alert ( "Please enter your Email Address to receive our Medela Pricing." );
		document.xBP_Price.email.focus();
        valid = false;
    }

    return valid;
}