﻿/*加入收藏*/
function AddFavorites(pid){
    $.fn.ShowTip('温馨提示','正在将该商品放入收藏夹，稍等...',300,80,0,0,0,0,0,1);
    $.get("/Themes/Default/Part/Service.ashx?t="+Math.random(),function(obj) {        	            
         if (obj == 'true') {
             $.get("/Themes/Default/Part/add2Fav.ashx?id=" + pid + "&tag=" + Math.random(),
         function(result) {
             if (result == 'True') {
                 $.fn.ShowTip('温馨提示','该商品已收藏,<a href="/user/collect.html">查看收藏夹</a>',300,80,0,5,0,0,1,1);
             } 
         })
         }
         else {
            $.fn.ShowTip('温馨提示','收藏功能需要您先登录<br />',300,80,0,2,'/login.html?returnURL=' + document.location.href,0,1,1);
            }
         }
     )
}