function mesaja_ekle(iconkod) 
{
var txtarea = document.defter.cevap;
iconkod = ' ' + iconkod + ' ';
if (txtarea.createTextRange && txtarea.caretPos) {
var caretPos = txtarea.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? iconkod + ' ' : iconkod;
txtarea.focus();}
else {
txtarea.value += iconkod;
txtarea.focus();};
}
