function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
function sub1_abre(tabela){ 
        tabela = document.getElementById(tabela); 
        if(tabela.style.display=="none"){ 
                tabela.style.display="block"; 
        } 
} 
 
function sub2_abre(tabela){ 
        tabela = document.getElementById(tabela); 
        if(tabela.style.display=="block"){ 
                tabela.style.display="none"; 
        } 
}
function high(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",40);
	
}
function low(which2)
{
clearInterval(highlighting);
which2.filters.alpha.opacity=40;
}
function highlightit(cur2)
{
if(cur2.filters.alpha.opacity<250)
cur2.filters.alpha.opacity+=9
else if(window.highlighting)
clearInterval(highlighting)
}