function resp_comment(id, comment_author) {
	komment_mezo = document.getElementById('comment');
	if (document.selection) {
		komment_mezo.focus();
		valasz = document.selection.createRange();
		valasz.text = '[re='+id+']Re: '+comment_author+'[/re] ';
	}
	else if (komment_mezo.selectionStart || komment_mezo.selectionStart == '0') {
		komment_mezo.focus();
		var eleje = komment_mezo.selectionStart;
		var vege = komment_mezo.selectionEnd;
		komment_mezo.value = komment_mezo.value.substring(0, eleje)
		+ '[re='+id+']Re: '+comment_author+'[/re] '
		+ komment_mezo.value.substring(vege, komment_mezo.value.length);
	} else {
		komment_mezo.focus();
		komment_mezo.value+='[re='+id+']Re: '+comment_author+'[/re] ';
	}
}
