// Copyright (C) 2009 Snelvertaler B.V.

function ShowHide(o, a)
{
	var t = document.getElementById(o);

    if (t != null)
	{
		if (a == 0)
		{
			t.style.display = "none";
		}
		else
		{
			t.style.display = "block";
		}
	}
}

function Toggle(i)
{
	ShowHide(oldTableId, 0);
	i = i.substring(0, i.length - 4);
	ShowHide(i, 1);
	oldTableId = i;
}
