/*
Plugin Name: Email Encryption
Plugin URI: 
Description: This plugin add an easy encryption to email addresses, so that spam bots do not recognize them anymore. The encryption is done by translating each character of the email address into a corresponding ASCII number, add 3 to that number and convert them back into a character. By doing so, the email address looses its typical format.
Author: Marz Innovations
Version: 1.0 
Author URI: http://www.marzinnovations.com/
*/ 

/*  Copyright 2010  Marz Innovations*/

<!--
    function UnCryptMailto( s )
    {
        var n = 0;
        var r = "";
        for( var i = 0; i < s.length; i++)
        {
            n = s.charCodeAt( i );
            if( n >= 8364 )
            {
                n = 128;
            }
            r += String.fromCharCode( n - 1 );
        }
        return r;
    }

    function linkTo_UnCryptMailto( s )
    {
        location.href=UnCryptMailto( s );
    }
    // --> 
