<!-- to hide script contents from old browsersfunction mangle() {	var at = / at /;	var dot = / dot /g;	var address = this.getAttribute("title");	address = address.replace(at, "@");	address = address.replace(dot, ".");	this.innerHTML = address;	this.setAttribute("href", "mailto:"+address);	this.setAttribute("title", "");	this.onmouseover = null;}function fixLinks() {	if (!document.getElementsByTagName && !document.createElement &&		!document.createTextNode) return;	var nodes = document.getElementsByTagName("*");	for(var i=nodes.length-1;i>=0;i-- ) {		if (nodes[i].className.search("change")>=0) {			var node = document.createElement("a");			node.setAttribute("href", "mailto:");			node.setAttribute("title", nodes[i].innerHTML);			node.innerHTML = nodes[i].innerHTML;			node.onmouseover = mangle;			var prnt = nodes[i].parentNode;			for(var j=0;j<prnt.childNodes.length;j++)				if (prnt.childNodes[j] == nodes[i]) {					if (!prnt.replaceChild) return;					prnt.replaceChild(node, prnt.childNodes[j]);					break;				}		}	}}// end hiding contents from old browsers  -->