// Gets code for decoding the spam protected mail address
function getPersonalNoSpamCode()
{
   // Encoded with http://w2.syronex.com/jmr/safemailto/de/
   return "NSHHBPKRZWHDNM4"
}

// Gets escaped string for decoding the spam protected mail address
function getPersonalNoSpamEscapeSeq()
{
   // Encoded with http://w2.syronex.com/jmr/safemailto/de/
   return "%215.%21%215%0B%3A/%3A%25%28%60%28A";
}

// Writes mail address to HTML output stream (instead of using it directly in the XHTML for conformance reasons)
function writeMailAddress()
{
   var s = '<img src="images/mail-icon.gif" alt="" /><a href="mailto:' + getDecodedMailAddress() + '">' + getDecodedMailAddress() + '</a>'
   // alert( s );
   document.write(s);
}

