function geduldAan(target)
{
	try
	{
		target = this;

		target.document.getElementById("tekstContainer").style.display = "none";
		target.document.getElementById("geduldContainer").style.display = "";

	}
	catch (e) { return false; }

	return true;
}

function geduldUit(target)
{
	try
	{
		target = this;

		target.document.getElementById("tekstContainer").style.display = "";
		target.document.getElementById("geduldContainer").style.display = "none";
	}
	catch (e) { return false; }

	return true;
}
