var FrontProducts = {
	/*
	 * 购买按钮 参数1：商品id 参数2：购买url，未经过标签转义的 参数3：商品url，经过标签转义的 参数4：弹出与否标示
	 */
	buy : function(pid, buyhref, producthref, targetOpen) {
		frontProductsDWRTools
				.goShoppingByPid(
						pid,
						function(checkValue) {
							if (checkValue == '1') {
								FrontOrders_showMiniCart01.addProduct("&productId=" + pid
										+ "&action_page=" + buyhref, targetOpen);
							} else {
								if (targetOpen == '_blank') {
									window
											.open(
													producthref,
													"",
													"toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes, location=yes, status=yes");
								} else if (targetOpen == '_self') {
									document.location.href = producthref;
								} else {
									document.location.href = producthref;
								}
							}
						});
	}
}