
function fillTextarea(taName, taText) {
	taName.focus();
	taName.value = taText;

}