// JavaScript Document

//------------------------------------------------------------------------------------
// Custom variables
//	Do not modify the below using you know what you are doing.
//------------------------------------------------------------------------------------
//tell you what .ITool.setTool you are using. (set default here)
//if using a rubber band to stand. set zoombox = true;
var currentToolName = 'zoominbox';




//HTML Layer Object (all proerties and methds can be appened;
var layer; 

//Counter used to know if its the first load of a map.
var totalMapRequests = 0;

//Response object to hold other objects for DOM
//Response object to hold other objects for DOM
var RESPONSE = new Object();

//Browser checks
var isNav = (window.navigator.appName.toLowerCase().indexOf("netscape")>=0);
var isIE = (window.navigator.appName.toLowerCase().indexOf("microsoft")>=0);


//Set to true when the map is panning.
var panning=false;
var panX;	//inital X and Y when the mouse is down on pan.
var panY;





