
e = [
	  [0,'emailAddress','email link text (leave empty for email address)'],
	  [1,'twirebach@echovalleygraphics.com','Tony Wirebach, CWYSC Registrar'],
	  [2,'twirebach@echovalleygraphics.com','Tony Wirebach'],
	  [3,'siteMaster@c4sitefactory.com','siteMaster'],
	  [4,'tonyw@evgrfx.com','']
];

function noSpam(n) {
	var name = e[n][2];
	var eMail = e[n][1];
	if(name=='') { name = eMail; }
	document.write('<a href=\"mailto:'+eMail+'\">'+name+'</a>');
}
