function confirmDeleteEvent(a){
	var message = "This will permanently delete the event:\r\n" + a.title;
	if(confirm(message)){
		document.location = a.parentNode.getElementsByTagName('A')[1].getAttribute('href');
	}		
}

function confirmDeleteUser(a){
	var message = "This will permanently delete the memeber:\r\n" + a.title;
	if(confirm(message)){
		document.location = a.parentNode.getElementsByTagName('A')[2].getAttribute('href');
	}
}