function nlSignup()
{
    if(!validateEmail(document.forms["nlform"].email.value))
    {
        alert("Sorry, the email address \"" + document.forms["nlform"].email.value + "\" does not appear to be valid.");
    }
    else
    {
        //submit to newsletter
        document.forms["nlform"].submit();
    }
    return;
}