function view_address() { 
	var tokstring = " [ n o s p a m ] ";
	address_to_replace=document.getElementById("e").firstChild; 
	real_address=address_to_replace.nodeValue.replace(tokstring, "@"); 
	address_to_replace.nodeValue=real_address;  
	address_to_replace.parentNode.setAttribute("href", "mailto:"+real_address);  
} 
//window.onload = function() { view_address(); }

function view_address2() {
	var tokstring = " [ n o s p a m ] ";
	if (document.getElementsByTagName) {
		var a = document.getElementsByTagName("a");
		var i;
		for (i = 0; i < a.length; i++) {
			if (a[i].className && a[i].className == "a") {
				address_to_replace = a[i].firstChild;
				real_address = address_to_replace.nodeValue.replace(tokstring, "@");
				address_to_replace.nodeValue = real_address; 
				address_to_replace.parentNode.setAttribute("href", "mailto:" + real_address); 
			}
		}
	}
}
window.onload = function() { view_address2(); }


