/*  Simple Javascript E-mail link obsfucator
	David L, 2005, v1.1 2009 - http://www.webannoyances.com 
    You're free to copy and use on your site, but please let me know and include this header comment
 */
  function e(name,domain,subj,txt,attribs) {
	if (domain=="") domain="webannoyances.com";
	if (subj!="") subj="?subject="+escape(subj);
	if (txt=="") txt=name+'@'+domain;
	document.write('<a '+attribs+'href=\"mailto:'+name+'@'+domain+subj+'\">'+txt+'</a>');
  }