function kfm_for_tiny_mce(field_name, url, type, win){
  window.SetUrl=function(url,width,height,caption){
   win.document.forms[0].elements[field_name].value = url;
   /*if(caption){
    win.document.forms[0].elements["alt"].value=caption;
    win.document.forms[0].elements["title"].value=caption;
   }*/
  }
  window.open('../../../kfm/index.php?mode=selector&type='+type,'kfm','modal,width=800,height=600');
}
tinyMCE.init({
  mode : "textareas",
  theme : "advanced",
  strict_loading_mode : true,
  cleanup_on_startup : true,
  convert_urls : false,
  entity_encoding : "raw",
  plugins : "safari,table,advimage,advlink,inlinepopups,insertdatetime,searchreplace,print,contextmenu,paste,xhtmlxtras,media,mod,advprev",

  theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,undo,redo,|,image",
  theme_advanced_buttons2 : "",
  theme_advanced_buttons3 : "",
  theme_advanced_buttons4 : "",
  theme_advanced_toolbar_location : "bottom",
  theme_advanced_toolbar_align : "center",
  theme_advanced_statusbar_location : "none",
  theme_advanced_resizing : true,

  editor_selector : "mceEditor",
  editor_deselector : "mceNoEditor",
  language: "pl",

  file_browser_callback : "kfm_for_tiny_mce"
});

