// JavaScript Utilties v1.0
// cathy boland  boland consulting, inc.

function validate_email ( form )
{
    valid = true;
    if ( form.email.value == "" )
    {
        alert ( "Please enter your email address." );
        valid = false;
    }

    return valid;
}


