function delMessage(id,titre){
	if(confirm('Do you really want to delete the message "'+titre+'" ?')){
		window.location='/del_message.php?id='+id;
	}
}
