/*
// protected email script by Joe Maller
// JavaScripts available at http://www.joemaller.com
// this script is free to use and distribute
// but please credit me and/or link to my site

emailE=('dc@' + 'danielcosta.com')
document.write('<A href="mailto:' + emailE + '">' + emailE + '</a>')
*/

var username = "dc";
var hostname = "danielcosta.com";
var linktext = username + "@" + hostname;
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + ">" + linktext + "</a>")
