// Java Document
var nn = (document.layers) ? 1 : 0;
var ie = (document.all) ? 1 : 0;
var coord_x = 0;
var coord_y = 0;
var auto_close = null;
var inizio_hint = '';
var seconda_hint = '';
var terza_hint= '';
var fine_hint = '';
//var supporto = '<table border="0" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';
if (ie) document.write('<span id="hint_txt" style="position: absolute; top: 0; left: 0; visibility: hidden; z-index: 99"></span>');

//if (nn) document.write('<layer id="hint_txt" top="0" left="0" visibility="hide" zindex="99"></layer>');
inizio_hint += '<table border=1 cellspacing=0 cellpadding=0 bgcolor="black">';
inizio_hint += '<tr>';
inizio_hint += '<td width=533 valign=top class="Normal">';
inizio_hint += '<p align=center><b><span style=\'font-size:12.0pt;font-family:"Arial Narrow";color:red\'>';
/*
testo1
*/
seconda_hint += '</span></b></p> ';
seconda_hint += '<p align=center><b>';
seconda_hint += '<span style=\'font-size:12.0pt;font-family:"Arial Narrow";color:white\'>';
/*
testo2
*/
terza_hint += '</span></b></p>';
terza_hint += '<p align=center><b><span style=\'font-size:12.0pt;font-family:"Arial Narrow";color:red\'>';
/*
testo3
*/
fine_hint += '</span></b></p></td></tr></table>';
/*fine_hint += '<td bgcolor="#000000" width="1" height="1" nowrap>' + supporto + '</td>';
fine_hint += '</tr>';
fine_hint += '</table>';
*/
if (ie) document.onmousemove = get_coord;
//if (nn) document.captureEvents (Event.MOUSEMOVE); document.onmousemove = get_coord;
function get_coord (e) {
if (ie) {
coord_x = event.clientX + document.body.scrollLeft;
coord_y = event.clientY + document.body.scrollTop;
event.srcElement.onmouseout = off_hint;
} 
/*if (nn) {
coord_x = e.pageX + window.pageXOffset;
coord_y = e.pageY + window.pageYOffset;
e.target.onmouseout = off_hint;
} */
return true;
}

function hint (testo1, testo2, testo3) {
if (typeof testo1 != 'undefined') {
if (testo1 == "") testo = "&nbsp;";
if (testo2 == "") testo = "&nbsp;";
if (testo3 == "") testo = "&nbsp;";
clearTimeout(auto_close);
auto_close = null;
if (ie) {
hint_txt.innerHTML = inizio_hint + testo1 + seconda_hint + testo2 + terza_hint + testo3 + fine_hint;
hint_txt.style.pixelTop = coord_y + 15;
hint_txt.style.pixelLeft = coord_x;
hint_txt.style.visibility = "visible";
} 


/*
if (nn) {
document.layers.hint_txt.document.open();
document.layers.hint_txt.document.write(inizio_hint + testo + fine_hint);
document.layers.hint_txt.document.close();
document.layers.hint_txt.left = coord_x;
document.layers.hint_txt.top = coord_y + 15;
document.layers.hint_txt.visibility = "show";
} */
auto_close = setTimeout("off_hint()", 10000);
}
}
function off_hint () {
if (ie) hint_txt.style.visibility = "hidden";
//if (nn) document.layers.hint_txt.visibility = "hide";
}

