function click_img(id,img) {
	if (document.getElementById(id).style.display == 'none') {	
		document.getElementById(id).style.display=""; 
		img.src="/pix/minus.gif"
	} else {
		document.getElementById(id).style.display="none";
		img.src="/pix/plus.gif"
	}
}

