	function openDiv(divid)
	{
		if( document.getElementById(divid).style.display == "none" )
		{
			document.getElementById(divid).style.display = "inline";
			document.getElementById("plus"+divid).innerHTML = "<img src=\"LEFA/img/minus.jpg\" width=\"17\" height=\"17\" alt=\"\" /> ";
		}
		else
		{
			document.getElementById(divid).style.display = "none";
			document.getElementById("plus"+divid).innerHTML = "<img src=\"LEFA/img/plus.jpg\" width=\"17\" height=\"17\" alt=\"\" /> ";
		}
	}