//\//////////////////////////////////////////////////////////////////////////////////
//\
//\  AntiSpam E-Mail Function
//\  This notice must remain untouched at all times.
//\  Copyright I.T. Lity. All rights reserved.
//\
//\  Author: Patrice MOUSSET
//\  Last modified 7 VIII 2003
//\
//\  This script is published under the open source license applicable to Luciol.
//\  Please read the license agreement online at: www.luciol.info
//\
//\//////////////////////////////////////////////////////////////////////////////////

<!-- anti-spam e-mailing -->
function eMailTag (wording,recipient,domain) {
  target_recipient = recipient ? recipient : (wording ? wording : "info");
  target_domain = domain ? domain : "luciol" + "." + "info";
  target_address = target_recipient + '@' + target_domain;
  target_wording = wording ? (recipient ? wording : target_address) : target_address;
  document.write('<a href="mailto:' + target_address +'">' + target_wording + '</a>');
}
<!-- end of anti-spam -->
