What the funk?
The form below will take the e.mail address you input and converts it along with the anchor container into ISO-Latin-1 codes and the necessary JavaScript to embed into your page. The idea here is that it will keep page scraping robots from parsing your pages and finding/extracting your e.mail address. In short, it turns this...

<a href=mailto:me@domain.com>Link String</a>
into...
<script type="text/javascript" language="javascript">
<!--
{
document.write(String.fromCharCode(60,97,32,104,114,101,102,61,34,
109,97,105,108,116,111,58,109,101,64,100,111,109,97,105,110,46,99,
111,109,34,62,76,105,110,107,32,83,116,114,105,110,103,60,47,97,62))
}
//-->
</script>

This is all done in JavaScript, so before anyone starts to yawp, no I am not seeing what address you input into this form. The code literally runs in your browser not my server.

Input Parameters
Email address to encode  
Link string for the mailto:
(default is your address)
 



Resulting JavaScript