
/**
 * Closes excerpt window, and redirects parent window
 * to shopping cart, where the item is added.
 * 
 * 
 */
function closeAndBuy(BASE_URL, id, qty, redirect) {
    url = BASE_URL + 'cart/adjust/' + id + '/' + qty + '/' + redirect + '/';
    /* msg = "After this book is added to your cart, what would you like to do?\n\n" +
          'Hit "Cancel" to continue viewing this page, ' +
          'or "OK" to close this window and view your shopping cart.'
    
    if (confirm(msg)) {
        window.opener.location = url;
        window.close();
    } else {
        window.opener.location = url;
    } */
    
    
    window.opener.location = url;
    window.close();
}
