﻿function hideCartInfo()
{	
	$("divCartInfo").setStyle("display","none");
}


function AddToCart(matchid)
 {
    if(!matchCanBuy)
    {
        alert("该搭配部分商品缺货,暂时不能整套购买!");
        return;
    }
    
    $('divCartInfo').setStyle("display","block");
    $('tdCartInfo_Message').set('html',"正在放入购物车...");
    
    var req = new Request({  
         method: 'get',  
         url: "/ShoppingNewCart_Match.aspx?matchid="+ matchid + "&ran=" + Math.random(),
         onRequest: function() {  },  
         onComplete: function(response) 
         {
             $('tdCartInfo_Message').set('html',response);
             showCartProductCount();
             hideCartInfo.delay(1);
         }  
    }).send();
 }
