$(function() {
    $("#rightBox button").click(function(e){
        e.preventDefault();
        var input = $("#rightBox input[type=text]").val();
        if(input && input.match(/^.+@.+\..+$/)){
            $("#rightBox form").submit();
        } else {
            alert("Please enter a valid email address.")
        }
    });
});