function putSmilies(str, place)
{
	switch (place) {
		case 'mess':	document.forms['formGastbok'].elements['txtGuestbookContent'].value += str;
						break;
		case 'ans':		document.forms['formSvara'].elements['txtAnswerContent'].value += str;
						break;
	}
}
