﻿var pWinRegister=null;
function ShowRegister(){
var strURL="http://point.mathfan.com/User/Reg.aspx";
window.open(strURL);
}
function PostRegister(){
$("#ButtonRegister").attr("style","display:none");
jQuery.facebox("正在提交......");

$.post("/User/PostRegister.aspx", 
    {
        action: "post",
        TxName: $("#Register_TxName").val(),
        TxEmail: $("#Register_TxEmail").val()
    },
    function(data){
        jQuery.facebox(data);        
        $("#ButtonRegister").show();
    });
}
