var pWinLogin=null;
function WinLogin(){
    if (pWinLogin!=null){
        pWinLogin.show();
        return;
    }
jQuery.get('./HTML/Login.html', function(data) {
   var html = jQuery(data);
var options={title:'登录'}
if (options.filter) html = jQuery(options.filter, html);
pWinLogin=new Boxy(html, options);
});

}
function CheckLogin(){
    jQuery.facebox("正在提交......");
    
$.post("Login.aspx",
        {
            action: "post",
            Name: $("#TxName").val(),
Password: $("#TxPassword").val()
        },

        function(data){
            
          top.location='http://www.tjtz.com/news/julenews.aspx'
pWinLogin.hide();
        }
);
}
