function OpenDiv(divname, aname)
{
	var el = document.getElementById(divname);
	if(el.style.display=="inline")
	{
		el.style.display="none";
		txt= document.getElementById(aname);
		if (txt != null) txt.innerText=">>>";
	}

	else 
	{
		el.style.display="inline";
		txt= document.getElementById(aname);
		if (txt != null) txt.innerText="<<<";
	}

}