// this is to confirm deletion of any item

	function confirmDelete(e) {
		var yes = confirm("Are you sure you wish to delete this?");
		if (yes == false) {
			if (window.event) {
				window.event.returnValue = false;
			} else {
				e.preventDefault();
			}
		}	
	}

	function confirmDeleteLoc(location) {
		var yes = confirm("Are you sure you wish to delete this?");
		if (yes) {
			window.location.href = location;
		}
	}

	function confirmDelLoc(location) {
		var yes = confirm("Are you sure you wish to delete this?");
		if (yes) {
			window.location.href = location;
		}
	}
