Allows cookie manipulation in a clean and abstracted way.
What would you
like to do?
About the "gslb" namespace
All my JavaScript objects are placed into a "namespace", which in fact is another JavaScript
object named "gslb" (for GalaSoft Laurent Bugnion).
The purpose of such a "namespace" is to avoid polluting the global object with too many names,
and to avoid name collisions.
On the downside, it is necessary to reference each call to the object with the full name,
for example:
gslb.CCookie.getCookie( ... );