
function dodajEmotikone(id, symbol)
{
   var text = document.getElementById(id);
   if (text)
   {
      text.value += ' ' + symbol;
   }
}

