function confirmDelete(){
	if(confirm("Are you sure you want to delete this item?\n\nWARNING: Deleting this item will permanently remove it from the server")) {
		return true;
	}
	else {
		return false;
	}
}

function confirmCloseout(){
	if(confirm("Are you sure you want to CLOSEOUT this item?\n\nWARNING: Once you close out an item, it cannot be undone!")) {
		return true;
	}
	else {
		return false;
	}
}