function confirmAbandon() {
	if (confirm("Are you sure you wish to abandon this cart?")) {
		return true;
	}
	else {
		return false;
	}

}