/*
  write the email adresses into the page
*/

var adres = {

write:function()
{
  var text =  '<a href="mailto:infos@gap-escrime.com">infos@gap-escrime.com</a><br>';
  text +=     '<a href="mailto:president@gap-escrime.com">president@gap-escrime.com</a><br>';
  text +=     '<a href="mailto:secretaire@gap-escrime.com">secretaire@gap-escrime.com</a><br>';
  text +=     '<a href="mailto:tresorier@gap-escrime.com">tresorier@gap-escrime.com</a><br>'; 
  text +=     '<a href="mailto:maitredarmes@gap-escrime.com">maitredarmes@gap-escrime.com</a><br>'; 
  text +=     '<a href="mailto:webmaster@gap-escrime.com">webmaster@gap-escrime.com</a>';

  document.getElementById('adresses').innerHTML = text;
} 
}	 
