function linkfix() {
	if (!document.getElementsByTagName) return;
	var i,l,a,arel,atit;
	l=document.getElementsByTagName("a");
	for (i=0; i<l.length; i++) {
		a=l[i];
		if (!a.getAttribute("href")) continue;
		arel=a.getAttribute("rel");
		if (arel && arel.toLowerCase() == "external") {
			atit=a.getAttribute("title");
			atit=(atit && atit != "") ?atit+", " :"";
			a.setAttribute("title",atit+"Link Esterno (nuova finestra)");
			a.setAttribute("target","_blank");
		}
	}
}
