﻿/**
 * 弹出登录框
 */
function loginweb()
    {        
   $.ajax({   
            type: "Post",   
            url: "/game/ajax.aspx/CheckWebLogin",   
            //方法传参
            data: "{}",   
            async:false,
            contentType: "application/json; charset=utf-8",   
            dataType: "json",   
            success: function(data) {   
                //返回的数据用data.d获取内容  
                if(data.d=="false")
                {
                    JqueryDialog.Open('玩家登陆', '/game/loginweb.aspx', 640,192);
                }
                else
                {   
                    window.parent.location = data.d;
                }
                
            },   
            error: function(err) {  //弹出错误信息 
                alert("ajax错误.");
                alert(err);   
            }   
        }); 
       
        
    }
    /**
 * 匿名试玩
 */


    function anonymous()
    {     
        
   $.ajax({   
            type: "Post",   
            url: "game/ajax.aspx/Anonymous",   
            //方法传参
            data: "{}",   
            async:false,
            contentType: "application/json; charset=utf-8",   
            dataType: "json",   
            success: function(data) {   
                window.parent.location = data.d; 
            },   
            error: function(err) {  //弹出错误信息 
                alert("ajax错误..");
                alert(err);   
            }   
        }); 
       
        
    }