var Tip={xCord:0,yCord:0,obj:null,tipElements:["a","abbr","acronym"],attachToolTipBehavior:function(){if(!document.getElementById||!document.createElement||!document.getElementsByTagName){return;}var i,j;addEvent(document,"mousemove",Tip.updateXY,false);if(document.captureEvents){document.captureEvents(Event.MOUSEMOVE);}for(i=0;i<Tip.tipElements.length;i++){var _2=document.getElementsByTagName(Tip.tipElements[i]);for(j=0;j<_2.length;j++){if(!_2[j].getAttribute("title")||_2[j].getAttribute("title")==""){continue;}addEvent(_2[j],"mouseover",Tip.tipOver,false);addEvent(_2[j],"mouseout",Tip.tipOut,false);_2[j].setAttribute("tip",_2[j].title);_2[j].removeAttribute("title");}}},updateXY:function(e){if(document.captureEvents){Tip.xCord=e.pageX;Tip.yCord=e.pageY;}else{if(window.event.clientX){Tip.xCord=window.event.clientX+document.documentElement.scrollLeft;Tip.yCord=window.event.clientY+document.documentElement.scrollTop;}}},tipOut:function(e){if(window.tID){clearTimeout(tID);}if(window.opacityID){clearTimeout(opacityID);}var l=getEventSrc(e);var _6=document.getElementById("toolTip");if(_6){_6.parentNode.removeChild(_6);}},checkNode:function(_7){var _8=_7;if(_8.nodeName.toLowerCase()=="a"||_8.nodeName.toLowerCase()=="acronym"||_8.nodeName.toLowerCase()=="abbr"){return _8;}else{return _8.parentNode;}},tipOver:function(e){Tip.obj=getEventSrc(e);tID=setTimeout("Tip.tipShow()",500);},tipShow:function(){var _a=document.createElement("div");var _b=Number(Tip.xCord);var _c=Number(Tip.yCord);var tp=parseInt(_c+15);var lt=parseInt(_b+10);var _f=Tip.checkNode(Tip.obj);var _10="";var _11="";if(_f.nodeName.toLowerCase()=="a"){_10=(_f.href.length>25?_f.href.toString().substring(0,25)+"...":_f.href);var _12=(_f.accessKey?" <span>["+_f.accessKey+"]</span> ":"");}else{_10=_f.firstChild.nodeValue;}_a.id="toolTip";document.getElementsByTagName("body")[0].appendChild(_a);_a.style.opacity=".1";_a.innerHTML=_f.getAttribute("tip");if(parseInt(Screen.getWidth()+Screen.getScrollX())<parseInt(_a.offsetWidth+lt)){_a.style.left=parseInt(lt-(_a.offsetWidth+10))+"px";}else{_a.style.left=lt+"px";}if(parseInt(Screen.getHeight()+Screen.getScrollY())<parseInt(_a.offsetHeight+tp)){_a.style.top=parseInt(tp-(_a.offsetHeight+10))+"px";}else{_a.style.top=tp+"px";}Tip.tipFade("toolTip",10);},tipFade:function(div,_14){var obj=document.getElementById(div);var _16=parseInt(_14);var _17=parseInt(_16+10);if(_17<80){obj.style.opacity="."+_17;obj.style.filter="alpha(opacity:"+_17+")";opacityID=setTimeout("Tip.tipFade('toolTip','"+_17+"')",20);}else{obj.style.opacity=".80";obj.style.filter="alpha(opacity:80)";}}};addEvent(window,"load",Tip.attachToolTipBehavior,false);