 var bV=parseInt(navigator.appVersion);

 NS4=(document.layers) ? true : false;

 IE4=((document.all)&&(bV>=4))?true:false;

 if(navigator.userAgent.indexOf("Opera")>=0)

   IE4 = false;

 ver4 = (NS4 || IE4) ? true : false;



 function expandIt()

  { return }



 isExpanded = false;



 function initIt()

  {if (!IE4) return;//*********10.04.2002

   tempColl = document.all.tags("tr");

    for (i=0; i<tempColl.length; i++)

   //  for (i=0; i<5; i++)

     { if (tempColl(i).className == "child") tempColl(i).style.display = "none";

     }

  }



 function expandIt(el)

  {  if (!IE4) return;//10.04.2002

   //if (!ver4) return;

    expandIE(el);

  }



 function expandIE(el)

  { //whichEl = eval(el + "Child");

     whichEl = eval(el);

    if (whichEl.style.display == "none")

     { whichEl.style.display = "block";

      }

    else

     { whichEl.style.display = "none";

     }

  }



 with (document)

  { write("<STYLE TYPE='text/css'>");

    write(".child {display:none}")

    write(".childo{display:block}")

    write("</STYLE>");

  }



 onload = initIt;
