﻿///////////////////////////////////
///志愿服务时间及相关资源 JS
///编写：	高川
///日期：	2009-7-29
///////////////////////////////////

/**
 *添加机构好友
 */
function Add(fid, fname)
{
    var result = Yc.Web.OrganizationList.Add(fid, fname).value;
    
    if(result == 0)
    {
        alert("您尚未登录，不能添加好友！");
        location.href = "Index.aspx";
    }
    
    if(result == 1)
    {
        alert("您不能将自己加为好友！");
    }
    
    if(result == 2)
    {
        alert("好友已经存在，不能重复添加！");
    }
    
    if(result == 3)
    {
        alert("添加好友成功！");
    }
    
    if(result == 4)
    {
        alert("添加好友失败！");
    }
}
