﻿///////////////////////////////////////////////////////
///加为好友JS
///编写：   高川
///日期：   2009-4-20
///////////////////////////////////////////////////////

/**
 *判断是否登录
 */
function IsLogin()
{  
    var login = parseInt(document.getElementById('ctl00_ContentPlaceHolder1_hfVolunteerID').value);
    
    if(login > 0)
    {
        return true;
    }
    else
    {
        alert('您尚未登陆，请请登录后添加好友！');
        location.href= "Login.aspx";
        return false;
    }
}

/**
 *加为好友
 */
function AddFriend(id, name)
{
    var vid = parseInt(document.getElementById('ctl00_ContentPlaceHolder1_hfVolunteerID').value);
    var fid = id;
    var fname = name;
    
    if(vid != fid)
    {
        var result = Yc.Web.Volunteers.AddFriend(vid, fid, fname).value;
        
        if(result > 0)
        {
            alert('好友添加成功！');
        }
        else if(result == -1)
        {
            alert('好友已经存在，不能重复添加！');
        }
        else
        {
            alert('好友添加失败，请稍后重试！');
        }
    }
    else
    {
        alert('不能将自己加为好友！');
    }
}