isExpanded = false;

function initIt()
{ tempColl = document.all.tags("DIV");
for (i=0; i<tempColl.length; i++)
{if (tempColl(i).className == "child") tempColl(i).style.display = "none";}
}

function expandIt(el)
{if (!ver4) return;
expandIE(el);}

function expandIE(el)
{whichEl = eval(el + "Child");
whichIm = eval(el + "Image");
if (whichEl.style.display == "none")
{ whichEl.style.display = "block";
whichIm.src = "images/st.gif";}
else
{whichEl.style.display = "none";
whichIm.src = "images/std.gif";}}

with (document)
{write("<STYLE TYPE='text/css'>");
write(".child {display:none}")
write(".childo{display:block}")
write("</STYLE>");}
onload = initIt;
