$(function()
{
    $("#butSubmit").click(function()
    {
        toggleButton();
        var name = $("#txtName").val()
        var email = $("#txtEmail").val();
        var Password = $("#txtPassword").val();
        var m = $("#m").val();

        if ( name = "" )
        {
            $.prompt("Please enter your name");
            return false;
        }

        if ( email == "" )
        {
            $.prompt("Please enter the email address you would like the code posted to.");
            toggleButton();
            return false;
        }
        if ( Password == "" )
        {
            $.prompt("Please enter a password");
            toggleButton();
            return false;
        }
        $("#frmRep").submit();
    });
});

function toggleButton()
{
    $("#theButton").toggle();
    $("#theWait").toggle();
}