function adatlap_mutatasa(azon)
{
   if(document.getElementById(azon).style.display == 'none')
   {
		document.getElementById(azon).style.display = 'block';
	}
	else
	{
		document.getElementById(azon).style.display = 'none';
	}


   if(!document.all)
   {
   	switchEditors(document.getElementById("adatlap"),"on");
   }

   function switchEditors(oNode,sType)
   {
   	var i=0;
   	for (i=0;i<oNode.childNodes.length;i++)
   	{
   		childNode = oNode.childNodes.item(i);
   		editor = FCKeditorAPI.GetInstance(childNode.name);
   		if (editor && editor.EditorDocument && editor.EditMode == FCK_EDITMODE_WYSIWYG)
   		{
   			editor.EditorDocument.designMode = sType;
   		}
   		switchEditors(childNode,sType);
   	}
   }
}
