function ConfirmarExclusao(url){
	if (confirm('Tem certeza que deseja apagar esse item?')) 
	{
		window.location=url;
	}
}

