function display(obj){
  if(document.getElementById(obj).style.display=='inline'){
    document.getElementById(obj).style.display='none';
  }
  else {
    document.getElementById(obj).style.display='inline';
  }
}


function mail()	{
  var nom = "contact";
  var domaine = "eTisse.ch";
  document.write('<a href=\"mailto:' + nom + '@' + domaine + '\">' + nom + '@' + domaine + '</a>');
}
