  function Obscurify(server, name, login, subject, body)
  {
    if (name == "") { name = login + String.fromCharCode(1 + 32 + 16 + 8 + 4 + 2 + 1) + server; };
    str2 = "lto";
    str3 = ":";
    str1 = "mai";
    document.write('<a href=\"' + str1 + str2 + str3 + login + String.fromCharCode(1 + 32 + 16 + 8 + 4 + 2 + 1) + server);
    if (subject != null) { document.write('?Subject=' + subject); };
    if (body != null) { if (subject != null ) { document.write('&'); } else { document.write('?'); };
			document.write('Body=' + body); };
    document.write('\">' + name + '</a>');
  }


  function ObscurifyNoLink(server, login)
  {
    str2 = "lto";
    str3 = ":";
    str1 = "mai";
    document.write(login + String.fromCharCode(1 + 32 + 16 + 8 + 4 + 2 + 1) + server);
  }


  function ObscurifyN(server, name, logins, subject, body)
  {
    str2 = "lto";
    str3 = ":";
    str1 = "mai";
    document.write('<a href=\"' + str1 + str2 + str3);
    document.write(logins.join(String.fromCharCode(1 + 32 + 16 + 8 + 4 + 2 + 1) + server + ","));
    document.write(String.fromCharCode(1 + 32 + 16 + 8 + 4 + 2 + 1) + server);
    if (subject != null) { document.write('?Subject=' + subject); };
    if (body != null) { if (subject != null ) { document.write('&'); } else { document.write('?'); };
			document.write('Body=' + body); };
    document.write('\">' + name + '</a>');
  }

