Feature:
IFEQU (if equal) compares if two parameters are equal.
If equal, the script will continue until a ELSE or ENDIF command. Any script between the ELSE and ENDIF command is skipped.
If not equal, the script will skip to next ELSE command and continue until a ELSE or ENDIF command.
Format:
IFEQU <parameter 1> <parameter 2>
<script 1>
ELSE
<script 2 >
ENDIF
Parameters: None
Return Value: None