function do_you_logout()
{
	var msg = 'Items in your cart are not secure until you have completed your purchase.\n';
	msg += 'Please be advised that sale prices and inventory quantities may have changed by';
	msg += 'the time you return to make your purchase.';
	return confirm(msg);
}
function remove_item_from_cart(sku, name)
{
	var msg = 'Are you sure you would like to remove '+sku+' - '+name+'?';
	return confirm(msg);
}
function clear_cart_items()
{
	var msg = 'Are you sure you would like to clear the contents of your cart?\n';
	msg += 'Please note: This action cannot be undone.';
	return confirm(msg);
}
