// 아래 경로를 js가 있는 경로로 바꿉니다. 파일이 위치합니다.
$js_path = "http://www.soojs.com/js/";
function js_include($script){
var script = document.createElement('script')
script.src = $js_path $script;
script.type = 'text/javascript';
var head = document.getElementsByTagName('head').item(0)
head.appendChild (script);
//질문을 파일로 변경하세요
js_include("prototype.js")
js_include("scriptaculous.js"); 🎜>