﻿/*
author:char
date:2009.12.1
*/
function addCollection(id){
    var val=WebAjaxAction.addCollection(id).value;
    if(val==-3){
        msg_show("<div style='margin-top:40px;color:red;'>系统繁忙!请稍候再试!</div>");
        return;
    }
    else if(val==-2){
        msg_show("<div style='margin-top:40px;'><a href='/login.html' onclick='javascript:memberToLogin();return false;' style='color:red;'>对不起!您还没有登录!</a></div>");
        return;
    }
    else if(val==0){
        msg_show("<div style='margin-top:40px;'><a href='/user/collection.html' style='color:red;'>您可能已收藏过该产品!</a></div>");
        return;
    }
    msg_show("<div style='margin-top:40px;'><a href='/user/collection.html'>您的收藏夹中共有&nbsp<font style='color:red;text-decoration:underline;font-weight:bold;'>"+val+"</font>&nbsp;件产品<a></div>");
}