
//-----------------------------------------product.html
//加入收藏
var AddFavorite = function(id){
    //是否登录
    if(j("#lllllllgggggggggggooooooooooo").val()==0){
        j.showDialog("/login.html");
        FreshImgCode();
        return;
    }
    
    var Type = j("#user_type").val();
    if(Type!="1"){
        alert("只有个人会员才有收藏商品的功能！");
        return;
    }
    j.ajaxSubmit(j("#add_favorite_"+id),"index=33&id="+id,FavoriteCreateSuccess,true);
}

//加入收藏执行成功
var FavoriteCreateSuccess = function(data){
    if(data.toLowerCase()=="true"){
        if(confirm("商品收藏成功，是否进入我的收藏夹？")==true)
            location.replace(j("#main_host").val()+"/Member/Personal/Orders/FavoriteList.aspx");
    }
    else if(data.toLowerCase() == "exist")
        alert("该商品已在您的商品收藏夹中。");
}
