A simple and short question that deserves an equally short answer:

Is a procedure that can call a procedure/function?

E.g.
Code:
procedure TheProc;
begin
end;

var
  p: string;
begin
  p := 'TheProc';
  magic_proc(p);
end.
I looked through the helpfile, although it's hard to find a command if you don't know what it's called. :/

Thanks!