<!--
// Code based on code from www.aardwulf.com
// This code is copyright and no right for reuse is granted.
// Feb 2005.
var k="ghijtlmnoqprskuvwzyx0123X54789+/AB=DEFGHIJKLMNOPQRSZUVW6YTacbdfeC";
function transAddr(n){var a,b,c,d,e,f,g,o="";var i=0;n=n.replace(/[^A-Za-z0-9\+\/\=]/g,"");
do{a = k.indexOf(n.charAt(i++));b = k.indexOf(n.charAt(i++));c = k.indexOf(n.charAt(i++));d = k.indexOf(n.charAt(i++));
e=(a<<2)|(b>>4);f=((b&15)<<4)|(c>>2);g=((c&3)<<6)|d;
o=o+String.fromCharCode(e);
if(c!=64){o=o+String.fromCharCode(f);}
if(d!=64){o=o+String.fromCharCode(g);}
a=b=c=d=e=f=g="";}while (i < n.length);document.write(o);}

function transAddr1(e){
// document.write("<a href=\"mailto:"+transAddr(e)+"\">"+transAddr(e)+"</a>");
 document.write("<a href=\"mailto:");
 transAddr(e);
 document.write("\">");
 transAddr(e);
 document.write("</a>");
}
function transAddr2(e,t){
  document.write("<a href=\"mailto:");
  transAddr(e);
  document.write("\">");
  transAddr(t);
  document.write("</a>");
}
//-->

