/**
 * This is the GloScope class.  It is a static class.  It defines a location for 
 * all the global values that exist in the system, so that
 * namespace conflicts can be easily avoided.  
 * Any non-standard assignments to GloScope are made in the main() method, located in Grapher.js.
 */
function GloScope() {
  alert("DevTime Alert: GloScope is a static class but is being instantiated; do not instantiate.");
}

GloScope.strId = "GloScope";
GloScope.getLocationOfMainMethod = function() { 
  return "The main() method is located at the end of ~/code/development/javascript/Grapher/Grapher.js"; 
}
 // This is a feature provided for authors of functions to be entered into the equation/function entry boxes.
GloScope.arrMatrix = new Array(500);
for (var intI=0; intI<GloScope.arrMatrix.length; intI++) {
  GloScope.arrMatrix[intI] = new Array(500);
}

