codice:
function enableTooltips(id){
var links,i,h;
if(!document.getElementById || !document.getElementsByTagName) return;
AddCss();
h=document.createElement("span");
h.id="btc";
h.setAttribute("id","btc");
h.style.position="absolute";
document.getElementsByTagName("body")[0].appendChild(h);
if(id==null) links=document.getElementsByTagName("a");
else {
for(var k=0,l=arguments.length;k<l;k++){
links=document.getElementById(arguments[k]).getElementsByTagName("a");
for(i=0;i<links.length;i++){
Prepare(links[i]);
}
}
}
}
window.onload=function(){enableTooltips("id_primo" ,"id_secondo","id_ennesimo")};
ciao