클립보드로 텍스트 복사하기
function copyContent(str) { if (document.selection) { bResult = window.clipboardData.setData("Text",str); if (bResult) alert!!('클립보드에 저장되었습니다.'); } else { str = encodeforFlash(str); var flashcopier = 'flashcopier'; if(!document.getElementById(flashcopier)) { var divholder = document.createElement('div'); divholder.id = flashcopier; document.body.appendChild(divholder); } document.getElementById(..