Once you get something like this (yours will vary depending upon the information you added before clicking the Encrypt Email button):
Code:
<script type="text/javascript">
/*<![CDATA[*/
/***********************************************
* Encrypt Email script- Please keep notice intact
* Tool URL: http://www.dynamicdrive.com/emailriddler/
* **********************************************/
<!-- Encrypted version of: you [at] **********.*** //-->
var emailriddlerarray=[121,111,117,64,121,111,117,114,100,111,109,97,105,110,46,99,111,109]
var encryptedemail_id77='' //variable to contain encrypted email
for (var i=0; i<emailriddlerarray.length; i++)
encryptedemail_id77+=String.fromCharCode(emailriddlerarray[i])
document.write('<a id="myencrypted" href="mailto:'+encryptedemail_id77+'">Contact Us</a>')
/*]]>*/
</script>
add the highlighted as shown.
Then in the head of the page you can put:
Code:
<style type="text/css">
#myencrypted {
font-family: verdana, arial, sans-serif;
font-size: 12pt;
color: #0000ff;
}
</style>
Bookmarks