function AddQty(Name, Price, Formula, Qty)
{
 $.post("/Cart/Checkout/AddToCart.do", {Product: Name, Price:Price,Formula:Formula,Qty:Qty },
 function(data){
  //alert("Data Loaded: " + data);
 alert("Your " + Name + " was added to the shopping cart");
 });
}

function Add(Name, Price, Formula)
{
 AddQty(Name, Price, Formula, 1)
}
