nel head

<SCRIPT language="JavaScript">
<!-- Begin
function showtip2(current,e,text){
if (document.all&&document.readyState=="complete"){
document.all.tooltip2.innerHTML='<marquee style="border:1px solid black">'+text+'</marquee>';
document.all.tooltip2.style.pixelLeft=event.client X+document.body.scrollLeft+10;
document.all.tooltip2.style.pixelTop=event.clientY +document.body.scrollTop+10;
document.all.tooltip2.style.visibility="visible";
}
else if (document.layers){
document.tooltip2.document.nstip.document.write(''+text+'');
document.tooltip2.document.nstip.document.close();
document.tooltip2.document.nstip.left=0;
currentscroll=setInterval("scrolltip()",100);
document.tooltip2.left=e.pageX+10;
document.tooltip2.top=e.pageY+10;
document.tooltip2.visibility="show";
}
}
function hidetip2(){
if (document.all) {
document.all.tooltip2.style.visibility="hidden";
}
else if (document.layers) {
clearInterval(currentscroll);
document.tooltip2.visibility="hidden";
}
}
// End -->
</SCRIPT>
<SCRIPT language="JavaScript">
<!-- Hide the script from old browsers --
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A";
hex[12]="B";
hex[13]="C";
hex[14]="D";
hex[15]="E";
hex[16]="F";

function ToHex(x){
var high=x/16;
var s=high+"";
s=s.substring(0,2);
high=parseInt(s,10);
var left=hex[high+1];
var low=x-high*16;
s=low+"";
s=s.substring(0,2);
low=parseInt(s,10);
var right=hex[low+1];
var string=left+""+right;
return string;
}

function fadein(text){
text=text.substring(3,text.length-4);
color_d1=255;
mul=color_d1/text.length;
for(i=0;i<text.length;i++){
color_d1=mul*i;
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);

document.write("<FONT COLOR='#"+color_h2+color_h1+"FF'>"+text.substring( i,i+1)+'</FONT>');
}

}
// --End Hiding Here -->
</SCRIPT>

nel body

<DIV id="tooltip2" style="position:absolute;visibility:hidden;clip:re ct(0 150 50 0);width:150px;background-color:gold;z-index:10;font-family:verdana;font-size:12pt"></DIV>
<DIV align="CENTER" name="divTest" onMouseover="showtip2(this,event,QUI IL TESTO');" onMouseout="hidetip2();" STYLE="cursor: hand">
<TABLE border="0" cellpadding="0" cellspacing="0"><TR><TD COLSPAN="7">
[img]pianob.jpg[/img]


</TABLE>


</DIV>