function emoticon(text,memo) {
var memo=document.getElementById(memo);
        text = ' ' + text + ' ';
        memo.value += text;
        memo.focus();
}
