function toggleIt(id)
{
	var theObj = document.getElementById(id);
	
	if (theObj == null) alert("Fehler bei ToggleFunktion");
	else
	{
		if (theObj.style.display == "none")
			theObj.style.display = "block";
		else
			theObj.style.display = "none";
	}
}