	//name of folder
	var strMapName = ""
	
	//width of map viewer
	var intViewerWidth = 500;
	
	//height of map viewer
	var intViewerHeight = 326;
	
	//number of tiles wide
	var intWTiles = 10;
	
	//number of tiles high
	var intHTiles = 10;
	
	//highest level of magnification
	var intMaxMag = 2;
	

	//Type of files i.e.(gif,jpeg,jpg)
	var strImageType = "jpg";
	
	//The approximate amout each smaller levels x and y values must be multiplied by to achieve the next levles x and y values
	var intMagLvlMultiplier = 1;
	
	//When up/down is clicked how much will it move
	var intVScrollIncrement = 200;
	
	//When left/right is clicked how much will it move
	var intHScrollIncrement = 250;
	
	//for the small view finder up to ten decimal places
	var lngSmallMultiplier = .4;
		
	var intXStartDrag = 0;
	var intYStartDrag = 0;
	var intCurrentMag = 0;
	
	//original Height/Width of the points of interest for use when resizing for the zoom
	var intPointsStartHeight = 15;
	var intPointsStartWidth = 15;