// Original idea from Cliff Pickover of IBM.
// Enhanced by Gary Palmer to really obscure the address 
// use: <a href="javascript:doMal('usr','dom','tld')" class="link">text</a>
// copy function below and change function name and values for each address you want to protect

function doMal(kay,interioryoga,com)
  { mynum = 63+1;
	
// or any other equation you want to help hide the desired num.

mychar = String.fromCharCode(mynum);  

// the sixty four is decimal ascii value 

mymttag = String.fromCharCode(108+1,95+2,106-1,110-2,116,100+11,50+8);
// that coded the link type

locationstring = mymttag + kay + mychar + interioryoga + "." + com;
	window.location = locationstring;
}