addEvent(window, 'load', externalLinks);

function addEvent(obj, evType, fn)
{ 
	if (obj.addEventListener)
	{ 
   	obj.addEventListener(evType, fn, true); 
   	return true; 
 	}
	else if (obj.attachEvent)
	{ 
   	var r = obj.attachEvent("on"+evType, fn); 
   	return r; 
 	}
	else
	{ 
   	return false; 
 	} 
}


function externalLinks()
{ 
	if (!document.getElementsByTagName) return; 
	var anchors = document.getElementsByTagName("a"); 
	for (var i=0; i<anchors.length; i++)
	{ 
   	var anchor = anchors[i]; 
   	if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") 
		{
    		 anchor.target = "_blank"; 
		}
	} 
}


function ApriPopup(strPag, strName, intW, intH, bScroll)
{
	intT = (screen.height - intH) / 2;
	intL = (screen.width - intW) / 2;
	var winPopup = window.open(strPag, strName, "top=" + intT + ",left=" + intL + ",width=" + intW + ",height=" + intH + "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + bScroll + ",resizable=0");
	if (winPopup == null) alert("Per poter visualizzare il contenuto richiesto è necessario che le finestre popup non vengano bloccate.\nConsulta le istruzioni del tuo browser per sapere come abilitare le finestre popup.");
	else winPopup.focus();
}