function _usr_lgn_()
{
	if(document.cookie)
  {
  	var cookieParts = document.cookie.split(/;\s/g);
  	var len = 0;
  	var user_name = "";
  	var name_id = "";
  	for(var i=0, len=cookieParts.length; i < len; i++)
  	{
  		cookieNameValue = cookieParts[i].match(/([^=]+)=/i);
  		if(cookieNameValue instanceof Array)
  		{ 
  			try{
  				cookieName = cookieNameValue[1];
  				if(cookieName == '_usr_lgn') user_name=decodeURIComponent(cookieParts[i].substring(cookieNameValue[1].length+1));
          if(cookieName == '_usr_lgn_id') name_id=decodeURIComponent(cookieParts[i].substring(cookieNameValue[1].length+1));
        }catch(ex){ }
      }
    }
    if(name_id!=null && name_id !="")
    {
    	document.getElementById("_sr_lgn_hr").innerHTML='»¶Ó­Äú£¬<a href="/account.do?method=view" style="text-decoration:underline;">'+user_name+'</a>&nbsp;&nbsp;&nbsp<a href="/account.do?method=logout">ÍË³öµÇÂ¼</a>';
    }else{
    	document.getElementById("_sr_lgn_hr").innerHTML='<a href="/account.do?method=view">×¢²á/µÇÂ¼</a>';
    }
  }else{
  	document.getElementById("_sr_lgn_hr").innerHTML='<a href="/account.do?method=view">×¢²á/µÇÂ¼</a>';
  }
}