var r0="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890@.";
function decrypt(msg, offset)
{
    var c;
    var l = msg.length;
    var s = "";
    var ind = 0;
    for (i = 0; i < l; i++)
    {
        c = msg.substr(i,1);
        var y = c;
        var pos = r0.indexOf(c);
        if (pos >= 0)
        {
            pos += offset + ind;
            ind++;
            while(pos >= r0.length)
            {
                pos -= r0.length;
            }
            while(pos < 0)
            {
                pos += r0.length;
            }
            y = r0.charAt(pos);
        }
        s += y;
    }
    return s;
}
function send(msg,offset)
{
    location.href="mailto:" + decrypt(msg,offset);
}

var end_a = "</a>";
var end_div = "</div>";
var end_p = "</p>";
