
   function emunge(a) {
    var h,t,i,l,c;

    h=document.getElementById(a).href.toString();
    t=document.getElementById(a).innerHTML.toString();

//  Href.

    h=h.substr(7);
    h=h.substr(0,h.length-1);
    l=h.length;
    for(i=0;i<l;i++){
     c=h.substr(i,1);
     if ((c<='z')&&(c>='a')) {
      c=String.fromCharCode((219)-c.charCodeAt(0));
     }
     if (c=='-') { c='@' }
     if (c=='*') { c='.' }
     h=h.substr(0,i)+c+h.substr(i+1)
    }
    h="mailto:"+h;
    document.getElementById(a).href=h;

//  InnerHtml.

    if (t.substr(0,1)=="*"){
     t=t.substr(1);
     l=t.length;
     for(i=0;i<l;i++){
      c=t.substr(i,1);
      if ((c<='z')&&(c>='a')) {
       c=String.fromCharCode((219)-c.charCodeAt(0));
      }
      if (c=='-') { c='@' }
      if (c=='*') { c='.' }
      t=t.substr(0,i)+c+t.substr(i+1)
     }
     document.getElementById(a).innerHTML=t;
    }

   }
