var gtxt="xxx";
var gtxt2="xxx";
var gtxt3="xxx";
<!--
function clickCategory(CatIDStr) 
{
  var txtObj = document.all("t_" + CatIDStr);
  var imgObj = document.all("i_" + CatIDStr);
  
 if (gtxt!="xxx")
	{
	if (gtxt!=CatIDStr)
	{
	var gtxtObj = document.all("t_" + gtxt);
	var gimgObj = document.all("i_" + gtxt);
	gtxtObj.style.display = 'none';
	gimgObj.src = JS_SKIN + 'node_plus.gif';
	}
	}

  if (txtObj.style.display == 'none') 
  {
    txtObj.style.display = '';
    imgObj.src = JS_SKIN + 'node_minus.gif';
  }
  else 
  {
    txtObj.style.display = 'none';
    imgObj.src = JS_SKIN + 'node_plus.gif';
  }
gtxt=CatIDStr;
}

function clickCategory2(CatIDStr) 
{
  var txtObj = document.all("t_" + CatIDStr);

  
  if (gtxt2!="xxx")
	{
	if (gtxt2!=CatIDStr)
	{
	var gtxt2Obj = document.all("t_" + gtxt2);
	gtxt2Obj.style.display = 'none';
	}
	}

  if (txtObj.style.display == 'none') 
  {
    txtObj.style.display = '';
  }
  else 
  {
     txtObj.style.display = 'none';
  }
gtxt2=CatIDStr;
}


function clickCategory3(CatIDStr) 
{
  var txtObj = document.all("t_" + CatIDStr);

  
  if (gtxt3!="xxx")
	{
	if (gtxt3!=CatIDStr)
	{
	var gtxt3Obj = document.all("t_" + gtxt3);
	gtxt3Obj.style.display = 'none';
	}
	}

  if (txtObj.style.display == 'none') 
  {
     txtObj.style.display = '';
  }
  else 
  {
     txtObj.style.display = 'none';
  }
gtxt3=CatIDStr;
}

//-->






