function clear_confirm() {
var reply=confirm("Do you really want to delete your shopping basket and close this shopping session?\nSelect OK to delete your basket and contents or Cancel to continue shopping.");
if (reply==true) {
    window.location="/bookshop/action/BasketClear";
  } else {
    window.location="/bookshop/basket/continue.html";
  }
}

