JavaScript function clLoad()

Function clLoad() has this syntax:

clLoad(file_name);

file_name is a string of the bare file name without a path. The file name is used with or without the .js extension.

For example, function foo() is defined in a file named bar.js. This is called with:

clLoad("bar.js"); // or clLoad("bar");
foo();