following code can be used to help in debugging 
      ;----------------------   
          nop          ;  put in 'nop' so Olly will still display both labels if directly following a label
      ..test1:         ; '..' like a global label but does not replace global label for local name prepend
         ; for debug

         mov esi,[curword]
         cmp dword[esi],'lpar'
         jne .endtest1
         cmp word[esi+4],'am'
         jne .endtest1

         nop                      ; multi 'nops' so more easily spotted in Olly
         nop
         nop
         nop
         nop
      ..endtest1:

      ;----------------------
