
// ========================================================================== //
//           Author : "Thierry Souriot, C.N.R.S. (France), 2008"              //
//          Merci de me prevenir si vous apportez des ameliorations           //
//         significatives (email : T.Souriot@opgc.univ-bpclermont.fr)         //
// ========================================================================== //
//    Ces Javascript permet le codage des liens Emails pour éviter le spam    //
// ========================================================================== //

function c_a_c(nom_dest,serv_dest,sujet_dest,cont_dest){
  document.writeln('<a href="mail'+'to:'+nom_dest+'&#064;'+serv_dest+'?subject='+sujet_dest+'">'+cont_dest+'</a>');
}

function img_adresse(nom_dest,serv_dest){
  document.writeln('<a href="mailto:'+nom_dest+'@'+serv_dest+'"><img src="/lmv/dec_lmv/emailS.gif" width="37" height="17" alt="Email"></a>');
}
function code_adresse_comment(nom_dest,serv_dest,sujet_dest,cont_dest){
  document.writeln('<a href="mail'+'to:'+nom_dest+'@'+serv_dest+'?subject='+sujet_dest+'">'+cont_dest+'</a>');
}
