local args = { ... }

if #args == 0 then
    pfun = tx.place
elseif args[1] == 'down' then
    pfun = tx.placeDown
elseif args[1] == 'up' then
    pfun = tx.placeUp
else
	print( "Usage: place [down|up]" )
	return
end

pfun()
