// *******************
// Display email address
// *******************
function ShowIemeel (name,server,suffix,text)
{ var atsign = unescape('%' + (39 + 1)); // This generates the string "%40", which unescapes to the @ sign
  if (text == "")
    text = name + atsign + server + "." + suffix;
  document.write('<a href="mailto:' + name + atsign + server + '.' + suffix + '">' + text + '</a>');
}