Global variables are available everywhere. Unlike Global Properties, these are true variables that behave nicely: you can change their values, and you can "localize" them (using Dim Local) so that commands or subroutines you call use the local version instead of the global one.

Global variables can optionally be prefixed with Global. when their name would otherwise be shadowed by another variable.