    /***************************************
	 * encodeURIComponent()를 사용하여 인코딩 한다.
	 * @param pm_sTxt : encoding 할 텍스트
	 * @return encoding 한 텍스트
	****************************************/
    function encode(pm_sTxt) {
        return encodeURIComponent(pm_sTxt);
    }
    
    /***************************************
	 * decodeURIComponent()를 사용하여 인코딩하고 "``"을 공백으로 변환한다.
	 * 그냥 decoding 하면 공백이 +기호로 변경되기 때문에 서버에서 공백을 "``"변경하여 보내준다.
	 * @param pm_sTxt : dncoding 할 텍스트
	 * @return dncoding 한 텍스트
	****************************************/
    function decode(pm_sTxt) {
        return decodeURIComponent(pm_sTxt).replace(new RegExp("``", "g"), " ");
    }