// aimsMultiServiceParam.js
/*
*  JavaScript parameter file for ArcIMS HTML Viewer Multiple MapService Sample
*		dependent on aimsXML.js, ArcIMSparam.js, aimsCommon.js, aimsMap.js, aimsIdentify.js, aimsSelect.js, and aimsLayers.js
*		To be interactive, dependent also on aimsDHTML.js, aimsClick.js, and aimsNavigation.js
*
*		Dependent on aimsMultiService.js
*/

	// definition for first element in the above arrays.
mapServiceList[0] = imsURL; //zero index starts with imsURL
mapServiceName[0] = "Doņa Ana County";
mapServiceVisible[0] = 1; // visible
//mapServiceList[1] = serverURL + "WorldCountries"; 
//mapServiceName[1] = "WorldCountries";
//mapServiceVisible[1] = 1; // visible

	// does the top overlayer mapservice require commas instead of periods in decimals? French, German, etc.
var commaUsedInTopLayer = false;
	// number of defined MapServices. Automatically defined by viewer.
mapServiceCount = mapServiceList.length;
	// URL of current active MapService 
activeMapService = mapServiceList[0]; //assumes that there is a mapServiceList[0]
	// index of current active MapService 
activeMapServiceIndex = 0;

	// able to add or delete mapservices 
canManageMapServices=true
	// message if mapservice image type cannot be transparent
var noTransMessage = "The Image Type for this MapService does not support transparency. It will hide any MapServices below it. Continue?";
	// list of hosts allowed to access. Delimited by commas (",").
		// The names listed should correspond with names defined in esrimap_prop for redirection
//availableHostsList = "";
availableHostsList = "kat,syracuse,pcloan2,jed,laketahoe,mammothmtn";
	// array for available hosts. Automatically defined by viewer from availableHostsList string.
if (availableHostsList!="") {
	availableHostsList = hostName + "," + availableHostsList;
} else {
	availableHostsList = hostName;
}
availableHosts = availableHostsList.split(",");
//alert("Available Hosts: " + availableHosts.length);
