

function toggle(stuff)
	{ 
		if (stuff.style.display != "block")
		{ 
			stuff.style.display = "block";
		}
		else 
		{
			stuff.style.display = "none";
		}
	}

function togImg(img)
	{ 
		var regex = eval("/arrow_down/");
		if (img.src.match(regex))
		{
			img.src = "/bcrp/images/arrow_up.gif";
			img.alt = "Collapse";
		}
		else
		{ 
			img.src = "/bcrp/images/arrow_down.gif";
			img.alt = "Expand";
		}
	}





function toggleB(stuff)
	{
		if (stuff.style.display != "none")
		{
			stuff.style.display = "none";
		}
		else 
		{
			stuff.style.display = "block";
		}
	}

function togImgB(img)
	{
		var regex = eval("/arrow_down/");
		if (img.src.match(regex))
		{
			img.src = "/bcrp/images/arrow_up.gif";
			img.alt = "Collapse";
		}
		else
		{
			img.src = "/bcrp/images/arrow_down.gif";
			img.alt = "Expand";
		}
	}

