function fillAt(anch) {
	if ( !anch._hw_done ) {
		anch._hw_done = true;
		var at = new RegExp("-at-","g");
		var dot = new RegExp("-dot-","g");
		var space = new RegExp("#","g");
		var contact = new RegExp("contact:","g");
		anch.href = anch.href.replace(contact,"mailto:").replace(at,String.fromCharCode(64)).replace(dot,String.fromCharCode(46)).replace(space," ");
		return true;
	}
}

