
function loadScriptFile(url){
 var scriptDom=document.createElement('script');
 scriptDom.setAttribute("src",url);
 scriptDom.setAttribute("type","text/javascript");
// alert(document.getElementsByTagName('head')[0].innerHTML);
 document.getElementsByTagName('head')[0].appendChild(scriptDom);
}


window.onload=function(){
// alert('actlog');
// loadScriptFile("/framework/prototype.js");
// loadScriptFile("/framework/scriptalicious.js");
// loadScriptFile("/framework/mochikit/base.js");
// loadScriptFile("/framework/mochikit/iter.js");
// loadScriptFile("/framework/mochikit/dom.js");
// loadScriptFile("/framework/test.js");
 
 
// var actlog=DIV({'style':'width:100px'},null);
// alert(document.documentElement.innerHTML);
// alert(createDOM('div',null)):
// alert(actlog);
// actlog.innerHTML="test";
// alert(actlog);
// document.documentElement.appendChild(actlog);
/*
 var boxDom=document.getElementById('inventorybox');
 boxDom.style.position="absolute";
 boxDom.style.width="200px";
 boxDom.style.height="100%";
 boxDom.style.right="0";
 var handle=document.createElement('div');
 handle.innerHTML="&lt;";
 handle.style.backgroundColor="red";
 handle.style.float="left";
 handle.style.width="8px";
 handle.style.height="100%";
 boxDom.appendChild(handle)
*/
// loadScriptFile("/framework/test.js");

}