function initemail(){var a=document.getElementsByTagName("A"),b=a.length;while(b--){var c=a[b];if(c.className.indexOf("emldeclnk ")!=-1){var e=c.className.replace("emldeclnk ",""),d="";if(window.atob){d=atob(e)}else{d=decode(e)}c.setAttribute("href","mailto:"+d);if(c.style.visibility=="hidden"){c.style.visibility="";c.removeChild(c.childNodes[0]);c.appendChild(document.createTextNode(d))}}}}if(window.addEventListener){window.addEventListener("load",initemail,false)}else{if(window.attachEvent){window.attachEvent("onload",initemail)}}function decode(d){var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var a="";var l,j,g;var k,h,f,e;var c=0;d=d.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(c<d.length){k=b.indexOf(d.charAt(c++));h=b.indexOf(d.charAt(c++));f=b.indexOf(d.charAt(c++));e=b.indexOf(d.charAt(c++));l=(k<<2)|(h>>4);j=((h&15)<<4)|(f>>2);g=((f&3)<<6)|e;a=a+String.fromCharCode(l);if(f!=64){a=a+String.fromCharCode(j)}if(e!=64){a=a+String.fromCharCode(g)}}return a};
