/*--------------------------------------------------------------------------
  -- 目的： 向购物车中加商品,检查库存情况
  -- 输入： iId 商品ID, sName 产品名称,nPrice 价格,nPriceNow 现价
  -- 返回： 
--------------------------------------------------------------------------*/ 
function AddToCart(iId,sName,nPrice,nPriceNow) {
if (iId<0 || nPrice<=0 || nPriceNow<=0) {
	return;
}
var re = new RegExp("#","gi");
sName=sName.replace(re,"＃");
var s="iId="+iId+"&sName="+sName+"&nPrice="+nPrice+"&nPriceNow="+nPriceNow+"&PopUse=1";
CartWin = window.open("/scrp/shopcartchk.cfm?"+s,'CartWin','width=800,height=420,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0'); 
CartWin.focus();
}
