I found the answer:
"my" is space scoped (context NOT carried outside the file)
"local" is run-time scoped (context into other files beneath this scope.)
However, you can use "vars" in conjunction with "use strict" to decl global vars. Make sure to go back and remove the "my" in front of the variables.
Thanks,
Daniel