If you want to improve your chances even more you can embed the ASCII code in JavaScript. This code will create a mailto: link where it's placed in the body section of the page.
<script type="text/javascript">
<!--
document.write("<a href='mailto:put your scrambled address here'> Contact us!</a>")
// -->
</script>
If you don't want to wrap the ASCII code in JavaScript you can use an ordinary HTML link, like this:
<a href="mailto:put your scrambled address here"> Contact us!</a>
|