Better yet, you can get rid of another GOTO by using the following instead...
 Code:
; ------- Determine if the user is in the LoginScript_QA group - Begin ------------------------
$Path = "qa\Netlogon"

$QAMessage = "You are running the QA Login Script"

If @ScriptDir = @ldrive + "qa\netlogon"
   $nul = MessageBox($QAMessage, "Message from Your System Administrator......",64,5)
Else
   If InGroup ("LoginScript_QA")
      Call @ldrive + $Path + "\login.kix"
      exit 0
   Else
      $Path = ""
      Goto Production
   Endif
EndIf
; ------- Determine if the user is in the LoginScript_QA group - End --------------------------