Code:
:IT
At (8,13) "IT script running"
Use J: "$IT\JOB"
If Exist($ARCHIVE + "\ITS-Mailarchs\" + @USERID)
  Use M: $ARCHIVE + "\ITS-Mailarchs\" + @USERID
  Use P: "$DEFAULT\PRODOS"
  Use T: "$SCANS\IT"
  If InGroup( "ITN\Service Desk" )
    Goto Set_Home_Page
  EndIf
  Goto "preend"
EndIf

Instead of using Goto, consider making the sections you point into functions, and that way eliminating the need of Goto.