Since the codebase of PHPSimpl is getting quite large loading all the
classes up front is not the best way to do it. So a "Simpl" class has
been implemented to load classes as they are needed. By default no
classes are loaded when the simpl.php file is included only functions
are loaded. You can then load classes with: $mySimpl->Load('Form');
This will cut down greatly on the amount of code that needs to be
loaded to memory if the page does not take advantage of any or few of
PHPSimpl's classes.