function suona(player){
larghezza = 500; 
altezza = 350; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open(player,"","width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y, scrollbar="no")
}

function quote(){
larghezza = 550; 
altezza = 580; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open("quote.html","", "scrollbars=yes, width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y)
}

function quote2(){
larghezza = 550; 
altezza = 580; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open("quote2.html","", "scrollbars=yes, width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y)
}


function linkifier()
{
	var present = document.location.href;
	var gcl = document.getElementById("sidebar");
	var els = gcl.getElementsByTagName("A");
	var numLinks = els.length;
	//document.write (numLinks + present);
	var pEL = null;
	
	for(c=0; c<numLinks;c++) {
		alert (present + " = link" + c + " " + els[c].href+"/");
	}
	
	
	for(iL = 0;iL < numLinks;iL++)
	{
		if(els[iL].href == present)
		{
			//pEL = els[iL]
			//while(pEL&&(pEL=pEL.parentNode)!=null){
			//	if(pEL&&pEL.tagName&&pEL.tagName.toUpperCase()=="UL"&&pEL.style) pEL.style.display = "block";
			//}
			linkTxt = els[iL].innerHTML;
			document.alert("trovato") ;
			newTxt = "<font color=\"#fc0\">" + linkTxt + "</font>";
			els[iL].outerHTML = newTxt;
			numLinks--;
		}
		//else  {
		//	document.write ('pagina chref: ' +els[iL].href + " ... " + present );
		//}
	}
}

//if(window.attachEvent) window.attachEvent("onload", linkifier);