/**
 * function goback
 * Retour au bon back, depuis le mail, ou recherche
 * 
 */
goback=function(){
if (history.length<=1){
window.location = "../index.php";
}else{
history.go(-1);
}
}
