/* This script is to provide some protection from SPAMbots */
/* It is based in part on code from
 * http://www.ssi-developer.net/design/avoid-spam-email.shtml
 * and http://www.joemaller.com/js-mailer.shtml
 *
 * SPAMbots have become much more intelligent. This should be replaced with an email
 * contact <form> using Formmail.
*/
function nospamemail() {
var name=('info');
var domain=('tuffsoul.com');

emailaddr= name + '@' + domain;
document.write('<a href="mailto:' + emailaddr + '">' + emailaddr + '</a>');
}
 