Code Select 
object = FindObject("Container name");
if (object == null || object->type != 5) {
  // object not found, or its not a container
  return null;
}
return object->status;
References:
https://wiki.netxms.org/wiki/NXSL_Function_Reference
https://wiki.netxms.org/wiki/NXSL:NetObj
