	/*
		Hilfsroutine kann in der
		Produktivumgebung entfallen
	*/
	function hideMe(obj)
	{
		while
		(
			(!obj.id)
			&&
			(obj.tagName != "BODY")
		)
		{
			obj=obj.parentNode;
		}
		window.status="";
		if (obj.id)
		{
			obj.style.border = "1px dotted #A0A0A0";
		}
	}
