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', script_filename);
    html_doc.appendChild(js);
    return false;
}

include_dom("./js/nexajax.js");
include_dom("./js/nexpopup.js");
include_dom("./js/nexconfirm.js");
include_dom("./js/jscripts.js");
include_dom("./js/validar.js");