/* 
Simple Javascript Email Encrypter ©2006 3rd. St. Web
Script adaptation by Jeff Yochim http://3rdstweb.com
Feel free to use this script, but please leave this comment block in. Thanks!
*/

goingTo=('mailto:')//This should always stay the same.

//Here is the first email address:
contact1=('miguel')//Replace the contact with your own.
address1=('@' + 'addon' + 'construction' + '.net')//Replace the address pieces with your own.
subject1=('?subject=Add On Construction')// You can change or omit this.
here1=(goingTo+contact1+address1+subject1)//Add it all up.

//Add more addresses like this:
contact2=('sales')//Replace the contact with your own.
address2=('@' + 'addon' + 'contruction' + '.net')//Replace the address pieces with your own.
subject2=('?subject=Add On Construction')// You can change or omit this.
here2=(goingTo+contact2+address2+subject2)//Add it all up.



/*
Save this script as [3rdStWeb.js] in your website's root.
Then put this script in the web page's head (src="[relative or absolute path to file]"):
<script type="text/javascript" src="3rdStWeb.js"></script>

Change the link text as needed and put this in your web page content:
Email: <a href="#" onclick="parent.location=here1">Web Design</a>

If you want a link to a second email address:
Email: <a href="#" onclick="parent.location=here2">Web Hosting</a>

You can add as many encrypted addresses as you like!
*/