function checkLink(arg) {	var ourURL=document.location.href;	var tAlertText="avviso";	ourURL = ourURL.replace("http://", "")	if(ourURL.indexOf("/") > -1) ourURL = ourURL.substring(0, ourURL.indexOf("/"));	tAlertText="State abbandonando il sito siteurl. Le informazioni contenute nel nuovo sito prescelto possono non essere conformi al DLvo 219/2006 che regola la pubblicita' sui medicinali per uso umano e le opinioni espresse non riflettono necessariamente le posizioni dell'Azienda, ne' sono da essa avallate";	tAlertText=tAlertText.replace("siteurl", ourURL);		var aList = document.getElementsByTagName("a");	for(var i = 0; i < aList.length; i++) {		if(aList[i].href != null) {			var hf = aList[i].href;			if((hf.substring(0, 7) == "http://") && (hf.indexOf("www.essex.it") == -1) && (hf.indexOf("schering-plough.it") == -1) && (hf.indexOf("www.merck.com") == -1)) {			//if((hf.substring(0, 7) == "http://") && (hf.substring(7, (ourURL.length + 7)) != ourURL)) {				if(aList[i].onclick == null) {					if(document.all) {						aList[i].onclick = function anonymous() { alert(tAlertText); };						}					else {						aList[i].setAttribute("onclick", 'alert("' + tAlertText + '");');					}				}			}	}	}}