function addEmoticon(emoticon) {
var textarea=document.getElementById('text');
emoticon='[.ei.]' + emoticon + '[./ei.]';
textarea.value=textarea.value+emoticon;
}