<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-2">
<META content="MSHTML 6.00.2900.2873" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I use mozilla and the hideshow function sometimes 
does not work.</FONT></DIV>
<DIV><FONT face=Arial size=2>The chunk always dissepears, but sometimes I 
can't make it appear back.</FONT></DIV>
<DIV><FONT face=Arial size=2>I don't have this problem in internet 
explorer.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>This is the function:</FONT></DIV>
<DIV><FONT face=Arial size=2>function hideshow(num) {<BR>    
idstring = "element-" + num;<BR>    chunk = 
document.getElementById(idstring);<BR>    if ( 
chunk.style.display == "none")  {<BR>    chunk.style.display 
= chunk.style.tag;<BR>    } else 
{<BR>        chunk.style.tag = 
chunk.style.display;<BR>        
chunk.style.display = "none";<BR>    }<BR>}   
</FONT></DIV></BODY></HTML>