// JavaScript Document function IZ_HEAD_JS(jsFile){ //this function includes all necessary js files for the application IZ_FN_INCLUDE(jsFile) } function IZ_FN_INCLUDE(jsFile){ //this function includes all necessary js files for the application var script = document.createElement('script'); script.src = jsFile; script.type = 'text/javascript'; script.defer = true; //len = document.getElementsByTagName('head').length document.getElementById('iz_head').appendChild(script); document.getElementsByTagName('head').item(0).appendChild(script); } function IZ_LOADING_ADMIN(){ var element = document.getElementById('IZ_MAIN'); element.innerHTML = '
'; IZ_HEAD_JS('http://' + window.location.hostname + "/"+'stor/web/php_js/complete_admin.js.php'); } function IZ_LOADING(){ var element = document.getElementById('IZ_MAIN'); element.innerHTML = '
'; IZ_HEAD_JS('http://' + window.location.hostname + "/"+'stor/web/php_js/izcore.js.php'); }