function showTXT(id){
var e = document.getElementById("myText"+id);
var img = document.getElementById("img"+id);

if(e.style.display!= "none")
	{e.style.display="none"; img.src="download/ico/plus.gif";}
else
	{e.style.display="inline"; img.src="download/ico/minus.gif";}
}