SAURON SCRIPT COMMANDS
  NAME
IF - if a condition, do..       
  SYNOPSIS
IF <EXP1> condition <EXP2> command - if %error% = %true% execute error.sfi
  ERRORS
Displays error on incorrect conditional expressions
 DESCRIPTION
Expressions : = > < <>
Commands : THEN EXECUTE PRINT

Example 1:
if %guest% = %true% execute guestmenu.sfi
execute
menu.sfi

Example 2:
if %maxnodes% = %true% then MAXNODE
execute main.sfi
:MAXNODE
print "No free nodes.. bye.."
logoff

Return