/* gestione dei link esterni */

function linkEsterni()
{
	//link esterni
	if(!document.getElementsByTagName) return;
	l=document.getElementsByTagName("a");
	for(i=0;i<l.length;i++)
	{
	  if(l[i].className.indexOf("linkEsterno", "linkEsternoNonGrafico")!=-1)
	  {
		//serve a modificare il title del link l[i].title="link esterno, si apre in una nuova finestra";
		l[i].onclick=function(){window.open(this.href);return(false)};
	  }
	}

	// Prodotti Menu Orizzontali
	if(!document.getElementsByTagName) return;
	l=document.getElementsByTagName("a");
	for(i=0;i<l.length;i++)
	{
	  if(l[i].className.indexOf("prodMenuOriz")!=-1)
	  {
		//serve a modificare il title del link l[i].title="";
		l[i].onmouseover=function(){document.getElementById("nomeProdottoMenu").innerHTML=this.title;};
		l[i].onmouseout=function(){document.getElementById("nomeProdottoMenu").innerHTML='Passa con il mouse e clicca per visualizzare la scheda'};
	  }
	}

	// Prodotti Menu Orizzontali Eng
	if(!document.getElementsByTagName) return;
	l=document.getElementsByTagName("a");
	for(i=0;i<l.length;i++)
	{
	  if(l[i].className.indexOf("prodMenuOrizEng")!=-1)
	  {
		//serve a modificare il title del link l[i].title="";
		l[i].onmouseover=function(){document.getElementById("nomeProdottoMenuEng").innerHTML=this.title;};
		l[i].onmouseout=function(){document.getElementById("nomeProdottoMenuEng").innerHTML='Hover with the mouse and click to open the product sheet'};
	  }
	}
}