function ch(etot,tot,tot2) {
	if (tot != null) {
		if (tot.style.display == '') {
			tot.style.display='none';
			etot.innerHTML='+';
		} else {
			tot.style.display='';
			etot.innerHTML='-';
		}
	}
	if (tot2 != null) {
		if (tot2.style.display == '') {
			tot2.style.display='none';
			etot.innerHTML='+';
		} else {
			tot2.style.display='';
			etot.innerHTML='-';
		}
	}
}

