var NicEdit;

function toggle()
{
   if(!NicEdit)
      NicEdit = new nicEditor({maxHeight : 600, buttonList : ['bold','italic','underline','link','unlink', 'upload', 'xhtml']} ).panelInstance('text',{hasPanel : true});
   else
   {
      NicEdit.removeInstance('text');       // Inhalt wird automatisch in textarea kopiert
      NicEdit = null;
   }
}
function speichern()
{
   if(NicEdit)
      NicEdit.instanceById('text').saveContent();  // Inhalt in die textarea retten
	  document.site_create.submit();              // und Formular abschicken
}
bkLib.onDomLoaded(function() { toggle(); });  // am Anfang: nicEditor erzeugen

