function dropInfo(blockid,otherid,image,otherimage,imagedir)
{
	if(document.getElementById(blockid).style.display=='block')
	{
		document.getElementById(blockid).style.display='none';
		image.src=imagedir+'ordner.gif';
	}
	else
	{
		document.getElementById(blockid).style.display='block';
		image.src=imagedir+'ordner_open.gif';
		if (otherid!='none' && otherid!='')
		{
			if (document.getElementById(otherid).style.display=='block')
			{
				document.getElementById(otherid).style.display='none';
				otherimage.src=imagedir+'ordner.gif';
			}
		}
	}
}

function dropInfo2(blockid)
{
	if(document.getElementById(blockid).style.display=='block')
	{
		document.getElementById(blockid).style.display='none';
	}
	else
	{
		document.getElementById(blockid).style.display='block';
	}
}
