<!--
//
img1=new Image()
img1.src="../images/fold.gif"
img2=new Image()
img2.src="../images/open.gif"
ns6_index=0

function change(e){

	if(!document.all&&!document.getElementById)
		return

	if (!document.all&&document.getElementById)
		ns6_index=1

	var source=document.getElementById&&!document.all? e.target:event.srcElement
	if (source.className=="folding")
	{
		var source2=document.getElementById&&!document.all? source.parentNode.childNodes:source.parentElement.all
		if (source2[2+ns6_index].style.display=="none")
		{
			source2[0].src="images/open.gif"
			source2[2+ns6_index].style.display=''
		}else{
			source2[0].src="images/fold.gif"
			source2[2+ns6_index].style.display="none"
		}
	}
}
document.onclick=change
//-->

<!--
function setVisible(cat,cat_down,selected,visibility,cat_color,cat_down_color,selected_color) {
eval('document.all.'+cat+'.style.backgroundColor="'+cat_color+'"');
eval('document.all.'+cat_down+'.style.backgroundColor="'+cat_down_color+'"');
eval('document.all.'+cat_down+'.style.display="'+visibility+'"');
eval('document.all.'+selected+'.style.backgroundColor="'+selected_color+'"');
}
-->