function validate_events(form) {
	if (form.catID.value == "") {
		alert('Please select a => Category   ');
		return false;
	} else {
		return true;
	}
}
function delete_entry(id) {
	if (confirm('Please confirm the deletion of the selected entry    ')== true) {
		window.location.href='calendar/events.php?delete=1&id=' + id;
	} else {
		return false;
	}
}

