/**
 * author:Nina
 */
function addCollection(nId,nType)
{
    if(nType=="1")
      TradeDetail.CollectionItem(nId, collectionItem);
    //else
      //ShopMasterPage.CollectionItem(nId, collectionItem);
      //Collection.CollectionItem(nType, nId, collectionItem);
}

function collectionItem(res)
{
    if(res)
    {
      switch(res.value)
      {
        case "0":
          alert('This item has already existed.')
          break;
        case "1":
          alert('Collect successfully.');
          break;
        case "2":
          alert('Please login first.');
          break;
      }
    }
}

function AddFavorite(id,type)
{
    window.open('/trade/AddCollection.aspx?id='+id+'&type='+type,'','height=10, width=10, top=0, left=0, toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no');
}

