If your short-code isn't really that short - but still want to avoid gotos - you can create a FUNCTION (UDF) in your script just for admins, then call it from your IF at the top ... like this:

 Code:
IF InGroup("ADMIN_USERS")
 AdminLogin()
 EXIT
ENDIF

;; much user stuff ...

Function AdminLogin()

 ;; much admin stuff

EndFunction