// FUNÇÕES DA PÁGINA DE NOTÍCIAS

// ADIÇÃO DE COMENTÁRIOS
function AddComment(item){
	if (frmPage.txt_comentario.value == ''){
		alert("AVISO : Comentário não preenchido !\n Digite seu comentário e tente novamente !");
		frmPage.txt_comentario.focus();
	}
	else {
		frmPage.submit();
	}
}

// EXCLUSÃO DE COMENTÁRIOS DE NOTÍCIAS
function ExcluirNCom(item,item2){
	if (confirm('ATENÇÃO : Confirma a exclusão deste comentario ?')) {
	    document.frmComment.txt_acao.value = 'delcomment';
		document.frmComment.txt_cod.value = item;
		document.frmComment.txt_codnews.value = item2;
		document.frmComment.action = 'noticia.php?cod=' + item2;
		document.frmComment.submit();
	}
}
