//DOM technique to replace [at] with @
function view_address() { 
	address_to_replace=document.getElementById("e").firstChild; 
	real_address=address_to_replace.nodeValue.replace("[aaaaaaat]", "@"); 
	address_to_replace.nodeValue=real_address;  
	address_to_replace.parentNode.setAttribute("href", "mailto:"+real_address);  
	} 

window.onload = function() { 
	view_address(); 
	}
