// JavaScript Document

/* for root directory files <SCRIPT type="text/javascript" language="Javascript" SRC="java.js"></SCRIPT>*/
/* for the next level down  <SCRIPT type="text/javascript" language="Javascript" SRC="../java.js"></SCRIPT>*/
/* <li><a href="../status.htm" [FROM HERE]onMouseover="showtext('REQUIRED TEXT')" onMouseout="hidetext()"[TO HERE]>Tax topics</a> </li>*/

/* from here transferred in 17.7.10 */
body:var baseopacity=0

body:function showtext(thetext){
if (!document.getElementById)
return
textcontainerobj=document.getElementById("tabledescription")
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
document.getElementById("tabledescription").innerHTML=thetext
highlighting=setInterval("gradualfade(textcontainerobj)",50)
}

body:function hidetext(){
cleartimer()
instantset(baseopacity)
}

body:function instantset(degree){
if (browserdetect=="mozilla")
textcontainerobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
textcontainerobj.filters.alpha.opacity=degree
else if (document.getElementById && baseopacity==0)
document.getElementById("tabledescription").innerHTML=""
}

body:function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}

body:function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}

/* to here transferred in 17.7.10 */