<script> //################################################ // getByteLength(obj) : 글자수(Byte) 구하기 //################################################ function getByteLength(obj){ var s = obj.value; var len = 0; if ( s == null ) return true; for(var i=0;i<s.length;i++){ var c = escape(s.charAt(i)); if ( c.length == 1 ) len ++; else if ( c.indexOf("%u") != -1..