function citar (txt)
{
	document.comentario.citar.value = txt;
	if (txt)
	{
		//document.getElementById('citar').innerHTML = '<b>Citando:</b> '+txt+' (<a href="#" onclick="citar(\'a\'); return false;">remover citação</a>)';
		document.getElementById('citar').innerHTML = '<b>Citando:</b> '+txt;
	}
	else
	{
		document.getElementById('citar').innerHTML = '';
	}
	document.comentario.comentario.focus();
}

