function addIcon( icon )
{
	document.getElementById( 'msg' ).value = document.getElementById( 'msg' ).value + ' ' + icon + ' ';
	document.getElementById( 'msg' ).focus();
	return true;
}