
// Gets decoded version of the spam protected mail address
// See: http://w2.syronex.com/jmr/safemailto/de/
function getDecodedMailAddress()
{
   // Encoded with e-mail address encoder 
   var v2 = getPersonalNoSpamCode(); // implement this is your websites code
   var v7 = unescape( getPersonalNoSpamEscapeSeq() ); // implement this in your websites code
   var v5 = v2.length;
   var v1 = "";
   
   for(var v4 = 0; v4 < v5; v4++ )
   {
      v1 += String.fromCharCode( v2.charCodeAt( v4 ) ^ v7.charCodeAt( v4 ) );
   }
   
   return v1;
}

// Gets decoded version of the spam protected mail address
// See: http://w2.syronex.com/jmr/safemailto/de/
function getDecodedMailAddressSchubert()
{
   // Encoded with e-mail address encoder 
   var v2 = getPersonalNoSpamCodeSchubert(); // implement this is your websites code
   var v7 = unescape( getPersonalNoSpamEscapeSeqSchubert() ); // implement this in your websites code
   var v5 = v2.length;
   var v1 = "";
   
   for(var v4 = 0; v4 < v5; v4++ )
   {
      v1 += String.fromCharCode( v2.charCodeAt( v4 ) ^ v7.charCodeAt( v4 ) );
   }
   
   return v1;
}


// Gets decoded mailto address of the spam protected mail address
// See: http://w2.syronex.com/jmr/safemailto/de/
function getDecodedMailtoAddress( p_strSubject )
{
   return "mail\u0074o\u003a" + getDecodedMailAddress() + ( p_strSubject ? "?subject=" + p_strSubject : "" );
}

// Gets decoded mailto address of the spam protected mail address
// See: http://w2.syronex.com/jmr/safemailto/de/
function getDecodedMailtoAddressSchubert( p_strSubject )
{
   return "mail\u0074o\u003a" + getDecodedMailAddressSchubert() + ( p_strSubject ? "?subject=" + p_strSubject : "" );
}

