function ToggleDesc(divID)
{
	
	toggleDiv = document.getElementById("LinkSection" + divID);
	toggleBtn = document.getElementById("LinkIcon" + divID);

	if (toggleDiv.style.display == "none") {
		toggleDiv.style.display = "block";
		toggleBtn.src = "http://www.allina.com/img4/collapse_icon.gif";
	} else {
		toggleDiv.style.display = "none";
		toggleBtn.src = "http://www.allina.com/img4/expand_icon.gif";
	}
	

	return false;
}

function CollapseAll()
{
	n=1;
	x = "";
	while (x != null)
	{
		x = document.getElementById("LinkIcon" + n);
		if (x != null) 
			{
				toggleDiv = document.getElementById("LinkSection" + n);
				toggleBtn = document.getElementById("LinkIcon" + n);
				toggleDiv.style.display = "none";
				toggleBtn.src = "http://www.allina.com/img4/expand_icon.gif";
			}
		n = n +1;
	}
}

function ExpandAll()
{
	n=1;
	x = "";
	while (x != null)
	{
		x = document.getElementById("LinkIcon" + n);
		if (x != null) 
			{
				toggleDiv = document.getElementById("LinkSection" + n);
				toggleBtn = document.getElementById("LinkIcon" + n);
				toggleDiv.style.display = "block";
				toggleBtn.src = "http://www.allina.com/img4/collapse_icon.gif";
			}
		n = n +1;
	}
}
