﻿function dispatch(objId){   // TEXTAREA 경우
    var objHtml = document.getElementById(objId).value;
	document.write(objHtml);
}

function dispatch2(objId){  // DIV 경우
    var objHtml = document.getElementById(objId).innerHTML;
    document.getElementById(objId).innerHTML = "";
	document.write(objHtml);
}

function dispatch3(html){
    var objHtml = html;
	document.write(objHtml);
}