/* ***********************************************************
config_zoomtocale.js
Javascript that creates the zoom to scale menu for the viewer.asp
page in Map Viewer 3rd Edition. Refer to DHTMLmapviewer.js for 
related Javascript. By Howie Sternberg (howies@snet.net)

Map Viewer is placed in the public domain and is "Freeware". 
Map Viewer may be freely used and redistributed, is provided 
"AS-IS" without warranty of any kind, and there is no technical 
support provided.
--------------------------------------------------------------
Instructions - add a mapScale() function for each scale listed 
in zoom to scale drop down list. 
--------------------------------------------------------------
Dependencies - DHTMLmapviewer.js  
--------------------------------------------------------------
History
May 2005, Initial code for Map Viewer 3rd Edition
************************************************************ */

// This is customizable. Just specify desired map scales below.

function addMapScales() {
	mapScale(2500);
	mapScale(5000);
	mapScale(10000);
	mapScale(24000);
	mapScale(35000);
	mapScale(50000);
	mapScale(75000);
	mapScale(100000);
	mapScale(250000);
	mapScale(500000);
	mapScale(1000000);
	mapScale(5000000);
	mapScale(10000000);
	mapScale(50000000);
	mapScale(100000000);
	mapScale(200000000);
}
