// Funktion zum ein- und ausblenden von Boxen
function showhide(objid)
{
	var obj = document.getElementById(objid);
	if (!obj) return;
	if (obj.style.display == '')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = '';
	}
}

function selectall()
{
	
}

function deselectall()
{
	
}
