
var xinha_plugins =
[
 'Linker'
];
var xinha_editors =
[
  'xinha_content'
];

function xinha_init()
{
  if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return;

  var xinha_config = new Xinha.Config();
  
  xinha_config.height = "400px";
  xinha_config.width = "100%";
  
  xinha_config.pageStyle = "body {font-family: Verdana; font-size: 10pt;}";

  xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);

  Xinha.startEditors(xinha_editors);
}
Xinha.addOnloadHandler(xinha_init);