A lightweight programming environment for desktop and mobile devices
new_pane_button = function(x, y, r)
	return overflowable_button('new', x, y, r,
		function()
			Show_menu = nil
			Current_pane.car = car
			Current_pane_index = Current_pane_index+1
			table.insert(Panes, Current_pane_index, new_pane())
			Current_pane = Panes[Current_pane_index]
			car = {}
		end)
end