if (!document.layers&&!document.all)
event="test"
function showtip2(current,e,text){

if (document.all&&document.readyState=="complete"){
document.all.tooltip2.innerHTML='<TABLE WIDTH=\'70%\' BORDER=0 BGCOLOR=\'black\' CELLSPACING=0 CELLPADDING=1><tr><td><TABLE WIDTH=\'100%\' BORDER=0 BGCOLOR=\'#ffcd2b\' CELLSPACING=0 CELLPADDING=1><tr><td><FONT SIZE=1 FACE=\'verdana\'>'+text+'</FONT></td></tr></table></td></tr></table>'
document.all.tooltip2.style.pixelLeft=event.clientX+document.body.scrollLeft+0
document.all.tooltip2.style.pixelTop=event.clientY+document.body.scrollTop+20
document.all.tooltip2.style.visibility="visible"
}

else if (document.layers){
document.tooltip2.document.nstip.document.write('<TABLE WIDTH=\'60%\' BORDER=0 BGCOLOR=\'black\' CELLSPACING=0 CELLPADDING=1><tr><td><TABLE WIDTH=\'100%\' BORDER=0 BGCOLOR=\'#ffcd2b\' CELLSPACING=0 CELLPADDING=1><tr><td><FONT SIZE=1 FACE=\'verdana\'>'+text+'</FONT></td></tr></table></td></tr></table>')
document.tooltip2.document.nstip.document.close()
document.tooltip2.document.nstip.left=0
currentscroll=setInterval("scrolltip()",0)
document.tooltip2.left=e.pageX+0
document.tooltip2.top=e.pageY+20
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"
}
}

function scrolltip(){
if (document.tooltip2.document.nstip.left>=-document.tooltip2.document.nstip.document.width)
document.tooltip2.document.nstip.left-=0
else
document.tooltip2.document.nstip.left=200
}