function confirm_delete(idval)
{
var verify= confirm("Are you sure you wish to remove this course from your shopping cart?");
if (verify== true)
{
window.location="../delete.php?cart_id=" + idval;
}
}

function confirm_delete_car(idval)
{
var verify= confirm("Are you sure you wish to remove this car from your shopping cart?");
if (verify== true)
{
window.location="../delete_car.php?car_cart_id=" + idval;
}
}

function confirm_delete_pass(idval)
{
var verify= confirm("Are you sure you wish to remove this golf pass from your shopping cart?");
if (verify== true)
{
window.location="../delete_pass.php?pass_id=" + idval;
}
}

function confirm_delete_offer(idval)
{
var verify= confirm("Are you sure you wish to remove this special offer from your shopping cart?");
if (verify== true)
{
window.location="../delete_offer.php?offer_id=" + idval;
}
}

function confirm_delete_ins(idval)
{
var verify= confirm("Are you sure you wish to remove this insurance cover from your shopping cart?");
if (verify== true)
{
window.location="../delete_ins.php?ins_id=" + idval;
}
}

function confirm_all(idval)
{
var verify= confirm("Are you sure you wish to remove all items from your shopping cart?");
if (verify== true)
{
window.location="../delete_all.php?sid=" + idval;
}
}