function c(a) {
	if(a.getAttribute == null) return;
	var str = a.getAttribute("href");
	if(str.length > 7 && str.substring(str.length - 7, str.length) == ".nespam")
		a.setAttribute("href", str.substring(0, str.length - 7));
}
