<!--
function validate_form ()
{
    valid = true;
    if ( document.subscriberForm.emailAddress.value == "" )
    {
        alert ("Please enter your email address");
        valid = false;
    }
    return valid;
}
//-->
