function DodajTekst(tekst)
{
	document.msg_send.tresc.focus();
	document.msg_send.tresc.value+= tekst + ' ';
	document.msg_send.tresc.focus();
}

function DodajTekst2(tekst)
{
	document.comment_send.tresc.focus();
	document.comment_send.tresc.value+= tekst + ' ';
	document.comment_send.tresc.focus();
}

function DodajTekstDo(tekst, id)
{
	//var element;
	//element = "msg_send_" + id;
	document.getElementById('memo_'+id).focus();
	document.getElementById('memo_'+id).value+= tekst + ' ';
	document.getElementById('memo_'+id).focus();
}