/*
  (C) Copyright CodeWeavers Inc.
  JavaScript Function Loader
*/

// include a file from js scripts dir
function include_dom (script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', web_root + '/js/' + script_filename);
    html_doc.appendChild(js);
    return false;
}

// load form processing functions
include_dom('forms.js');

// load tooltip lib
include_dom('tooltip.js');

// load ajax functions
include_dom('ajax.js');
include_dom('ajax-dynamic-content.js');

// load wysiwyg
include_dom('wysiwyg.js');

// load misc utils
include_dom('utils.js');
