function collapseExpand(d){
	var MapToolUrl_str = document.location + ''
	MapToolUrl_str = MapToolUrl_str.toLowerCase()
	char_pos = MapToolUrl_str.indexOf('index.asp') 
	maptoolURL = MapToolUrl_str.substr(0,char_pos) 
	toolImgURL = MapToolUrl_str.substr(0,char_pos) 

	
  var id = d.id.substring(6);
  divs = document.getElementsByTagName('DIV');
  for(i=0;divs.length>i;i++){
    if(divs[i].id.indexOf('el')==0&&divs[i].id.indexOf('el'+id)!=0){
      divs[i].style.display='none';
	  
      document.getElementById('Parent'+divs[i].id.match(/\d+/g)[0]).src = toolImgURL + "gfx/tridown.gif";
    }
  }
  st = document.getElementById('el'+id+'Child').style;
  st.display = (st.display!='block')?'block':'none';
  document.getElementById(d.id).src = (st.display=='block')?toolImgURL+"gfx/triup.gif":toolImgURL + "gfx/tridown.gif";

}

var collapsed = true;

with (document) 
{
    write("<STYLE TYPE='text/css'>");
    write(".child {");
    write("display:none;");
    write("margin-left:0;");
    write("}");
    write("</STYLE>");
}
