// JavaScript Document
function confirm_delete(listId) {
	conf = confirm("Are you sure you want to delete this listing?");
	if (conf) {
		location.href = "list_delete.php?listId="+listId;
	}
}