// Gets code for decoding the spam protected mail address
function getPersonalNoSpamCode()
{
   // Encoded with http://w2.syronex.com/jmr/safemailto/de/
   return "IAEHDPIJM2QJQG8DSF5VCYJJBM"
}

// Gets escaped string for decoding the spam protected mail address
function getPersonalNoSpamEscapeSeq()
{
   // Encoded with http://w2.syronex.com/jmr/safemailto/de/
   return "%20/%23%27%04%3B%269%20W%25%23%3AjJ%217%25T%243%3C%3Ed%239";
}

// Writes mail address to HTML output stream (instead of using it directly in the XHTML for conformance reasons)
function writeMailAddress()
{
   var s = '<a href="mailto:' + getDecodedMailAddress() + '">' + getDecodedMailAddress() + '</a>'
   // alert( s );
   document.write("eMail: " + s);
}

