﻿$(document).ready(function() {
		$().ajaxError(function(){
            alert("登陆错误！");
		});
		$.ajax({
			type: "POST",
			url: "/Member/User/CheckLogin.aspx",
			data: "active=Check&var="+Math.random( ),
			dataType: "xml",
			success: function(xml){
			    var thisPageUrl = window.location.href;
			    var online="";
                var expUser="";
                $(xml).find('online').each(function(){
                    online=$(this).text();
                }); 
                $(xml).find('expUser').each(function(){
                    expUser=$(this).text();
                });
		        if(online == "" && expUser == "" )
		        {
		            $("#loginMsg").html("您好！请<a href=\"http://member.f123.com/Login/?url=" + thisPageUrl + "\" class=\"cBlue\" target=\"_top\">登录</a>   <a href=\"http://member.f123.com/Register/?url=" + thisPageUrl + "\" class=\"cBlue\">注册</a> ");
		        }
		        else
		        {
			        if(online=="")
			        {
				        $("#loginMsg").html("您好," + expUser + " ！ [<a href=\"http://member.f123.com/Login/?url=" + thisPageUrl + "\" class=\"cBlue\" target=\"_top\">请登录</a>]  [<a href=\"http://member.f123.com/Register/?url=" + thisPageUrl + "\" class=\"cBlue\">免费注册</a>] ");
			        }
			        else
			        {
				        $("#loginMsg").html("您好，" + online + "！[<a  href=\"/Member/My/\" class=\"cBlue\" target=\"_top\">会员中心</a>] [<a href=\"http://member.f123.com/Logout/?action=Logout&url=" + thisPageUrl + "\" class=\"cBlue\" target=\"_top\">退出</a>]");
			        }
		        }                 
			}
		});
});