function emoticon(text) {
	thisform = document.getElementById('reactie_form');
	text = ' ' + text + ' ';
	if (thisform.reactie_text.createTextRange && thisform.reactie_text.caretPos) {
		var caretPos = thisform.reactie_text.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
		thisform.reactie_text.focus();
	} else {
	thisform.reactie_text.value  += text;
	thisform.reactie_text.focus();
	}
}
