// ================================================================ // CHEditor lightbox // ---------------------------------------------------------------- // Author: Na Chang-Ho (chna@chcode.com) // Homepage: http://www.chcode.com // Copyright (c) 1997-2009 CHSOFT // ================================================================ // lightbox 디렉토리 경로 설정 var lightBoxPath = "./"; var lightBoxCssPath = lightBoxPath + "css/imageUtil.css"; var lightBoxIconPath = lightBoxPath + "images/"; function runLightbox() { var head = document.getElementsByTagName('head'); var css = head[0].appendChild(document.createElement('link')); css.setAttribute('type', 'text/css'); css.setAttribute('rel', 'stylesheet'); css.setAttribute('media', 'all'); css.setAttribute('href', lightBoxCssPath); hs.iconsPath = lightBoxIconPath; var img = document.images; var container = document.getElementById('lightbox-container'); if (typeof container == 'undefined') { return; } for (var i=0; i