onload = function nospam() {
	if (document.getElementsByTagName) {
		var spans = document.getElementsByTagName('span')
		for (var i = 0; i < spans.length; ++i) {
			if (spans[i].className == 'e-addr') {
				var c = spans[i].firstChild.nodeValue.split('{+}').join('@');
				var anchorText = document.createTextNode(c);
				var anchor = document.createElement('a');
				anchor.href = 'mailto:' + c;
				anchor.appendChild(anchorText);
				spans[i].replaceChild(anchor, spans[i].firstChild);
			}
		}
	}
}
function m_nospam(s1,s2) { window.location.href='mailto:'+s2+'&#64;'+s1; }
function m_write(s1,s2)  { document.write(s2+'&#64;'+s1); }
