If you use parenthesis around your arguments, you have to use the Call keyword. Some programers use Call always because it makes your code easier to read.

Valid:
Call unload(Me)
unload Me

Invalid:
Call unload Me
unload(me)

HTH,
Phil