﻿function ChangeTxt(SrcInput, TxtContent) {
    if (SrcInput == undefined) {
        return false;
    }

    SrcInput.value = TxtContent;

    SrcInput.focus();
}

// 이미지 썸네일이 없을시 뉴뱅에서 썸네일 다시 제작
function CallNBIimgUpload(cmscode) {
    var CmsImageUploadPage = 'http://image.newsbank.co.kr/imp/CmsImageUpload.aspx?cmscode=' + cmscode;
    
    /* document. */
}

function ModifyHtmlEscapeTxt(StrText) {
    StrText = StrText.replace("'", "&#39;");
    StrText = StrText.replace("\"", "&#34;");
    StrText = StrText.replace("<", "&#60;");
    StrText = StrText.replace(">", "&#62;");

    return StrText;
}

function sendTwitter(title, url) {

    var wp = window.open("http://twitter.com/home?status=" + escape(title) + " " + escape(url), 'twitter', '');
    
    if (wp) {
        wp.focus();
    }
}