/**
 * 加载相关热销商品
 *
 * @param integer
 * @return null
 */
function load_goods_hot(iClassId){
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=hotsell&classid="+iClassId,
		success:function(sReturn){ 
			$('#hotLoading').html(sReturn);
		}
	});
}
/**
 * 统计点击
 *
 * @param integer iGoodsId 产品ID
 * @return null
 */
 
function Count_goods_Hit(iGoodsId){
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=getHits&id="+iGoodsId,
		success:function(sReturn){ 
			//$('#hit').html(sReturn);
		}
	});
}
/**
 * 统计点击
 *
 * @param integer iNewsId 文章ID
 * @return null
 */
 
function Count_news_Hit(iNewsId){
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=getNewsHits&id="+iNewsId,
		success:function(sReturn){ 
			//$('#hit').html(sReturn);
		}
	});
}

/**
 * 加载收藏评论数等明细
 *
 * @param integer iGoodsId 商品ID
 * @return null
 */
function show_sell_Collect_hit(iGoodsId){
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=show&id="+iGoodsId,
		success:function(sReturn){ 
			var response = sReturn.split("|");
			var SellNum = response[0];
			var CollectNum = response[1];
			var HitNum = response[2];
			var Score = response[3];
			$('#show_SellNum').html(SellNum);
			$('#show_CollectNum').html(CollectNum);
			$('#show_HitNum').html(HitNum);
			$('#show_Score').html(Score);
		}
	});
}

/**
 * 加载是否下架信息
 *
 * @param integer iGoodsId 商品ID
 * @return null
 */
function show_NoStock(iGoodsId){
	//判断是否下架
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=GetStock&id="+iGoodsId,
		success:function(sReturn){ 
			if(sReturn=="ok"){
				$('#NoStock').html("<a class=\'btn-xj\' rel=\"nofollow\">此产品已下架<\/a> <input type=\'button\' class=\'btn-coll\' onclick=\"add_goods_to_favorites(\'"+iGoodsId+"\');\" value=\'收藏此商品\' \/>");
				$('#NoStock2').html("<a class=\'btn-xj2\' rel=\"nofollow\">此产品已下架<\/a>");
			}
		}
	});
}

/**
 * 加载促销信息
 *
 * @param integer iGoodsId 商品ID
 * @return null
 */
function show_Cx(iGoodsId){
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=cx&id="+iGoodsId,
		success:function(sReturn){ 
			if(sReturn!=""){
				var response = sReturn.split("$$$$");
				$("#cx").get(0).className = "display";
				$('#ShowSellPrice').html(response[0]);
				$('#cx').html(response[1]);
			}
		}
	});
	//赠品
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=Gift&id="+iGoodsId,
		success:function(sReturn){ 
			if(sReturn!=""){
				$('#GiftWord').html(sReturn);
			}
		}
	});
	//广告词
	$.ajax({
		url:"/js/ajaxs.asp",
		type:"get",
		async: false,
		cache:false,
		data:"action=adWord&id="+iGoodsId,
		success:function(sReturn){ 
			if(sReturn!=""){
				$('#advertiseWord').html(sReturn);
			}
		}
	});
}
