

function addToCart(id, name) {
    var j = new Ajax();
    var r = j.load('Cmd=add&id=' + id);
    alert('The product ' + name + ' was added to your cart.');
    var c = document.getElementById('cart-msg');
    c.outerHTML = r;
    flash('flash', 'Your cart was updated');
}
