function addEmo(abbr) {
   var user_text = document.getElementById('user_text');
   user_text.value += abbr + ' ';
   user_text.focus();
}
