The system
interface has functions for loading a Properties File and gives access to a number of system services:
An example of a system
function is to check if a user is logged on:
// check if user is logged on
var userLoggedOn = system.securityManager.isUserLoggedOn();
// if the user is not logged on go to the login form
if(!userLoggedOn){
form.gotToForm("login");
}