// JavaScript Document

function toggle(what)
{
	var target = document.getElementById("sm_" + what);
	if(target.style.display == "block")
	{
		target.style.display = "none";
	}
	else
	{
		target.style.display = "block";
	}
}
