function delete_objet(objet) {
if(confirm('Are you sure to want to delete this object ?')) {
document.location.href=objet;
}
else {
alert('Action annulée !');
}
}