<!--
 var bV=parseInt(navigator.appVersion);
 NS4=(document.layers) ? true : false;
 IE4=((document.all)&&(bV>=4))?true:false;
 ver4 = (NS4 || IE4) ? true : false;

 function expandIt()
  { return }

 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");
    whichEl1 = eval(el + "Child1");
    if (whichEl.style.display == "none")
     { whichEl.style.display = "block";
	if (whichEl1) whichEl1.style.display = "block";
	}
    else
     { whichEl.style.display = "none";
	if (whichEl1) whichEl1.style.display = "none";
	}
  }

 with (document)
  { write("<STYLE TYPE='text/css'>");
    write(".child {display:none}")
    write(".childo{display:block}")
    write("</STYLE>");
  }

 onload = initIt;
-->
