function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
}
else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet")
  fileref.setAttribute("type", "text/css")
  fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok.txt","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok2.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok3.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok4.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok5.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok6.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok7.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok8.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok9.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok10.js","js") //dynamically load and add this .js file
loadjscssfile("http://www.stormpages.com/kacangholic/hancok/hancok11.js","js") //dynamically load and add this .js file
