If you donīt want spammers to easily grab mail addresses off your website out
of a mailto link,
use this script to obfuscate the link but still make it work
for users.
Just include the following part in your HTML file before the
</head>:
<script type="text/javascript">
function
mailtoLink(input)
{
var
a=unescape(input.replace(/\|/g,"%"));var b="";
for(var
c=13;c<a.length;c++)b+=String.fromCharCode(a.charCodeAt(c)-c+13);eval(b);
}
</script>