/*
	function doBox(pID)
	Auf- und Zuklappen einer Box
*/ 
function doBox(pID,pSetVisibility)
{
	// Aktuellen Status ermitteln
	if (!pSetVisibility) IsVisible = (document.getElementById("box_"+pID).style.display=="block" ? true : false);
	else IsVisible = (pSetVisibility=="block" ? false : true);
	// Content ein/ausblenden
	document.getElementById("box_"+pID).style.display=(IsVisible ? "none" : "block");
	// Pfeil drehen
	document.getElementById("arrow_"+pID).src="images/box_arrow_"+(IsVisible ? "close" : "open")+".gif";
}