function insertEmoticon(emoticon)
{
	textarea        = document.getElementById('comment');
	textarea.value += ' ' + emoticon + ' ';
	textarea.focus();
}

