﻿function GetUserStatus()
{  
      $.ajax({
        type:"POST",
        url:"GetInfo.ashx?action=getstatus&from="+window.location.href,
        dataType:"html",
        success:function(result)
        {
           if(result!="")
           {
              $("#login_pre").html(result);
              $(".lmcon").append("|<a href='http://www.1312.com/myaccount/'>我的账户</a>");
            
           }
        }
    });   
}


function GetUserStatusService()
{  
      $.ajax({
        type:"POST",
        url:"../GetInfo.ashx?action=getstatus&from="+window.location.href,
        dataType:"html",
        success:function(result)
        {
           if(result!="")
           {
              $("#login_pre").html(result);
                $(".lmcon").append("|<a href='myaccount/'>我的账户</a>");
            
           }
        }
    });   
}




