TipCap="white";TipCapBG="#CC0000";TipWidth=250;TipObj=null;TipIE4=(document.all)?true:false;function HideTip(){if(TipObj){TipObj.style.visibility="hidden";TipObj=null;};return true;};function ShowTip(ID,title,text){if(!TipIE4||!ID)return false;TipObj=document.all[ID];if(!TipObj)return false;document.onmousemove=TipOnMM;txt="<TABLE WIDTH=";txt+=TipObj.style.width?TipObj.style.width:TipWidth;txt+=" BORDER=0 CELLPADDING=1 CELLSPACING=0 BGCOLOR=\"";txt+=TipObj.style.backgroundColor?TipObj.style.backgroundColor:TipCapBG;txt+="\">";if(title&&title!=""){txt+="<TR><TD><B><FONT COLOR=\"";txt+=TipObj.style.color?TipObj.style.color:TipCap;txt+="\">"+title+"</FONT></B></TD></TR>";};if(text&&text!="")txt+="<TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=white><TR><TD><FONT COLOR=black>"+text+"</FONT></TD></TR></TABLE></TD></TR>";txt+="</TABLE>";TipObj.innerHTML=txt;TipObj.style.visibility="visible";TipDisp();return true;};function TipDisp(){x=event.clientX+10;Width=TipObj.offsetWidth;clientWidth=document.body.clientWidth;if(x+Width>clientWidth)x=clientWidth-Width;x+=document.body.scrollLeft;TipObj.style.left=x;y=event.clientY+10;Height=TipObj.offsetHeight;clientHeight=document.body.clientHeight;if(y+Height>clientHeight)y=clientHeight-Height;y+=document.body.scrollTop;TipObj.style.top=y;};function TipOnMM(e){if(TipObj)TipDisp();}
