ifSubUser.getBlength = function(str){ for(var i=str.length,n=0;i--;){ n += str.charCodeAt(i) > 255 ? 2 : 1; } return n; }