// Mapping Software (constants)
//
// © 2007 Gary B. Little
//
// May 24, 2007
//

var kMapName = "van250";

// Title of the list next to the map.
//
var kListTitle = "Capt. George Vancouver Camp Sites &mdash; June 1792";

// Copyright notice to appear on the map.
//
var kCopyrightNotice = "Portions &copy; 2009 Gary Little";

// URLs of marker icon
//
var kMarkerOffURL = kMapName + "/artwork/marker.png";
var kMarkerOnURL = kMapName + "/artwork/marker-on.png";
var kMarkerPrintURL = kMapName + "/artwork/markerie.gif";
var kMarkerMozPrintURL = kMapName + "/artwork/markerff.gif";

// Colors for list highlighting
//
var kListOffColor = "lavender";
var kListOnColor = "yellow";


// Flags for controlling whether the centre
// coordinates and the date are to be displayed.
//
var kShowCoordinates = false;
var kShowDateDisplay = false;


// ID of <div> element for map display:
var kMapID = "map";

// ID of <div> element for map branding:
var kBrandID = "brand";

// ID of <div> element for copyright display:
var kCopyrightID = "copyright";

// Name of anchor at the top of the map:
var kMapAnchorID = "maptop";

// ID of <span> element for date of last update:
var kUpdatedID = "lastupdated";

// ID of <div> element for list of markers:
var kHotID = "hot";
var kHotID2 = "hot2";

// ID of <span> element for coordinates display:
var kCoordinatesID = "coordinates";


// Globals
//
var gMap;
var gPosControl;
var gStartCoordinates;
var gStartZoom;
var gStartMode;
var gMarkerCount;
var gScrollList;