//우리말 맞춤법 검사 결과"); spellWin.document.write(""); spellWin.document.write(content); spellWin.document.write(""); try {spellWin.document.close();} catch(e) { } try {spellWin.document.focus();} catch(e) { } } function getSpellCheckProcess(content) { var queryString = "content=" + content; var spellDiv = document.getElementById("SpellView"); var request = new HTTPRequest("POST", blogURL_USC + "/plugin/spellcheck"); request.async = false; request.onSuccess = function () { getSpellWindow(this.getText("/response/spellContent")); } request.onError = function() { getSpellWindow("맞춤법 검사를 하지 못했습니다."); } request.send(queryString); } //]]>