var Usuario = {
	
	excluir: function( coUsuario )
	{
		if( confirm( 'Tem Certeza que deseja remover esse registro?' ) )
		{
			$.post( 
				URL_ROOT + 'Usuario/excluir/' +  coUsuario
				, function()
				{
					document.location.href = URL_ROOT + 'Usuario/index'
				}
			);
		}
	}
}