<!--
var aperto
function mostra(id)
{
if (aperto)
{
chiudi(aperto);
}

document.getElementById(id).style.display= "block";
window.setTimeout('high(aperto)',100);
aperto=id;
return;
}

function mostra2(id)
{

document.getElementById(id).style.display= "inline";
window.setTimeout('high(aperto)',100);
aperto=id;
return;
}

function high(which2){
theobject=which2;
highlighting=window.setInterval("highlightit(theobject)",30);
}

function highlightit(cur2){
if (document.getElementById(cur2).filters&&document.getElementById(cur2).filters.alpha.opacity<100)
document.getElementById(cur2).filters.alpha.opacity+=10;
else if (window.highlighting)
{
clearInterval(highlighting);
}
}


function chiudi(id)
{

document.getElementById(id).style.display= "none";

return;
}
-->
