//============================
// JavaScript custom settings.
//============================
// Title and home page
var WebsiteTitle = "Abbeville County GIS";
var HomePage = "http://www.abbevillecountysc.com/";
var MetadataDir = "http://127.0.0.1/WebsiteData/Metadata";

// Parcel layer id from AXL file
var ParcelLayerId = "par";

// Toggle icons, map refresh
var ToggleTools = true;
var AutoRefresh = true;

// Max allowed number select
var MaxSelectedFeatures = 2000;
var MaxBufferFeatures = 500;

// Pan-Zoom scale factor
var ZoomFactor = 3;
var PanFactor = 0.5;

// Number of decimals to show in xy coordinate readout in status bar
var NumXYDecimals = 2;

// Search tolerance in pixels (radius)
var SearchTolerance = 4;

// Default circle radius
var CircleRadius = 1000;

// From ArcMap->Properties->Source 
var CentralMeridianEasting = 2000000;   //False easting of central meridian, map units
var FalseNorthing = 0.0;         //False northing, map units
var CentralMeridian = -81.0;     //central meridian
var Lat1stParallel = 32.5;  	   //latitude of first standard parallel (Small#)
var Lat2ndParallel = 34.833333333333343;  //latitude of second standard parallel
var LatOrigin = 31.833333333333329;  	   //latitude of origin

// Misc.
var MapUnits = "Feet";
var ScreenDPI = 96;
var CoordFeet = false; // Toggle for feet or lat/lon readout
var LockTimeout = 10;  // Unlock website time

// Pop-up disclaimer.
var Disclaimer = "";
Disclaimer += "Disclaimer: The data provided on this site are prepared for the inventory of real property found within ";
Disclaimer += "Abbeville County and are compiled from recorded plats, deeds, and other public records and data.  ";
Disclaimer += "This data is for informational purposes only and should not be substituted for a true title search, ";
Disclaimer += "property appraisal, survey, or for zoning verification.  ";
Disclaimer += "Abbeville County assumes no legal responsibility for the information contained in this data.  ";
Disclaimer += "Map data are based on the South Carolina state plane coordinate system, NAD83.";
      
// Colors.
var MenuBackgroundColor = "#FFE7BA";
var MenuBorderColor = "Gray";

var PullDownBackgroundColor = "rgb(252,252,249)";
var PullDownBorderColor = "Gray";

var HoverBackgroundColor = "#FFE5A3";
var HoverBorderColor = "#AA5303";

var HighlightBackgroundColor = "rgb(255,255,220)";
var HighlightBorderColor = "Red";

var DataFrameBackgroundColor = "white";
var MouseOutWhite = "white";
var MouseOutGray = "rgb(243,240,240)";
var MouseOutGreen = "#FFE7BA"; // C!

var DisableGray = "silver";

// Programming constants
var MainMenuHeight = 57;      //Total height of pulldown and toolbar menus

