/*
 * Customize these variables on application deployment
 *
 * Author: Nikolai Schwertner
 *
 * Revision history:
 *    2004-11-22 Documented
 *
 */
 
  // Customization for the local system environment
  var win32 = false;  // A quick switch between the Unix and Windows schemas
  
  // Unix settings
  var local_root = "/usr/local/atdata/wwwdata/webapps/soilboring";
  var mapsrv_binary = "/cgi-bin/mapserv";
  var web_root = "";
  var mapfile = local_root + "/bsp-unix.map";
  
  // Windows settings
  if (win32) {
     local_root = "c:/bsp";
     mapsrv_binary = "/cgi-bin/mapserv.exe";
     web_root = "";
     mapfile = local_root + "/bsp-windows.map";
  }