//
function apagarItem(href) {
	if (confirm('Deseja apagar esse item?')) {
		self.location=href;		
	}
}

//
function abrirVideo(URLStr, width, height) {
	popUpWin = open(URLStr, 'Videos', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height);
}

//
function enviarNewsletter(id) {
	if (confirm('Tem certeza que deseja enviar o newsletter?')) {
		alert("Aguarde pois essa operacao pode demorar alguns minutos\nClique em Ok para começar");
		self.location = 'newsletter.php?enviar='+id;
	}
}