function showhide(divId) {

	theDiv = document.getElementById("div_" + divId);
	
	if (theDiv.className == "hidden")
	{
		theDiv.className = "visible";
	}
	else
	{
		theDiv.className = "hidden";
	}
}
