// JavaScript Document
  tinyMCE.init({
    theme : "advanced",
    mode: "exact",
    elements : "text",
    theme_advanced_toolbar_location : "top",
    theme_advanced_buttons1 : "bold,italic,justifyleft,justifycenter,justifyright,justifyfull,formatselect,sub,sup,charmap",
    
    theme_advanced_buttons2 : "bullist,numlist,outdent,indent,link,unlink,anchor,separator,"
    +"undo,redo,cleanup,code",
	theme_advanced_buttons3 : "",
	content_css : "example_advanced.css",
	theme_advanced_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1", // Theme specific setting CSS classes
    height:"350px",
    width:"350px" //,
//    file_browser_callback : 'myFileBrowser'
  });

  function myFileBrowser (field_name, url, type, win) {
    var fileBrowserWindow = new Array();
    fileBrowserWindow['title'] = 'File Browser';
    fileBrowserWindow['file'] = "my_cms_script.php" + "?type=" + type;
    fileBrowserWindow['width'] = '430';
    fileBrowserWindow['height'] = '400';
    tinyMCE.openWindow(fileBrowserWindow, { window : win, resizable : 'yes', inline : 'yes' });
    return false;
  }
