// This function asks the user whether he's sure he wants to delete the announcement.
function confirmAnnouncementDeletion(announcementToDelete){
	if (window.confirm('Are you sure you wish to delete this announcement?')) {
		location.href='announcementBoard.php?deleteAnnouncement='+announcementToDelete;
	}
}
