function AddQty(Name, Price, Formula, Qty) {

	var product_name = Name.replace(/(<([^>]+)>)/ig, "");
	product_name = product_name.replace("'", "");

	$.post("/Products/Cart/AddToCart.rails", { Name: Name, Partnumber: Formula, Price: Price },
                    function(data) {
                    	alert("Your item was added to the shopping cart.");
                    	
                    }

            );

                     GetProductCount();
}

function GetProductCount() {
	$.get("/Products/Cart/GetProductCount.rails", function(data) {
		var oCell = document.getElementById("shoppingcarttag");
		if (oCell != null) {
			oCell.innerHTML = data; 
		}


		
	})
}


