
function eml() {

   a = new Array('m','o','c','.','e','l','a','g','e','l','o','t','n','u','p','@','o','f','n','i');
   s = "";

   for (i = a.length - 1; i >= 0; i--)

      s += a[i];

   return '<a href="mailto:' + s + '">' + s + '</a>';
}

