

	
	// LOCATION DATA
	var DATA_FILE = "../../siteresources/data/locations.xml";
	
	// STARTING ADDRESS SETTINGS
	var STARTADDRESS_FORMNAME = "startform";
	var STARTADDRESS_FIELDNAME = "startaddress";
	var STARTADDRESS_DEFAULTTEXT ="Address, City, State";
	
	// DIV IDS
	var DIV_STARTADDRESS = "startdiv";
	var DIV_DIRECTIONSLINK = "directionslinkdiv";
	var DIV_ROUTE = "routediv";
	var DIV_LOCATIONLIST = "locationsdiv";
	var DIV_MAP = "mapdiv";
	
	// MARKER ICON
	var tiny = new GIcon();
	tiny.image = "red.png";
	tiny.shadow = "shadow.png";
	tiny.iconSize = new GSize(12, 20);
	tiny.shadowSize = new GSize(22, 20);
	tiny.iconAnchor = new GPoint(6, 20);
	tiny.infoWindowAnchor = new GPoint(5, 1);
	
	
	// MAPPING ERROR MESSAGES
	var ERRORMESSAGES=[];
	ERRORMESSAGES[G_GEO_SUCCESS]            = "Success";
	ERRORMESSAGES[G_GEO_MISSING_ADDRESS]    = "Missing Address: The address was either missing or had no value.";
	ERRORMESSAGES[G_GEO_UNKNOWN_ADDRESS]    = "No corresponding geographic location could be found for one of the specified addresses. This may be due to the fact that the address is relatively new";
	ERRORMESSAGES[G_GEO_UNAVAILABLE_ADDRESS]= "Unavailable Address:  The geocode for the given address cannot be returned due to legal or contractual reasons.";
	ERRORMESSAGES[G_GEO_BAD_KEY]            = "The API key is either invalid or does not match the domain for which it was given";
	ERRORMESSAGES[G_GEO_TOO_MANY_QUERIES]   = "Too Many Queries: The daily geocoding quota for this site has been exceeded.";
	ERRORMESSAGES[G_GEO_SERVER_ERROR]       = "A geocoding or directions request could not be successfully processed, yet the exact reason for the failure is not known.";
	ERRORMESSAGES[G_GEO_MISSING_QUERY]      = "The HTTP q parameter was either missing or had no value. For geocoder requests, this means that an empty address was specified as input. For directions requests, this means that no query was specified in the input."
	ERRORMESSAGES[G_GEO_BAD_REQUEST]	  	= "A directions request could not be successfully parsed.";
	
		
	