function getTextFromApplet(editorsNames) {
  // PARSE EDITORS NAMES
  var parsedEditorsNames=editorsNames.split("#divider#");
  //alert("delka retezce: "+parsedEditorsNames.length);
  for (i=0; i<parsedEditorsNames.length-1; i++) {
    //alert(parsedEditorsNames[i]);
    // SET VALUE FROM EDITORS TO HIDDEN OBJECT IN THE FORM
    document.pattern.editorsData.value+=document.getElementById(parsedEditorsNames[i]).getTextFromEditor()+"#divider#";
  }
  //alert(document.pattern.editorsData.value);  
  //document.formular.editorsData.value=document.editorName.getString();
  
}
