	function confirmDeletion(str) {
		if (confirm(str+"?")) {
			return true;
		}
		else {
			return false;
		}
	}

