// extended db javascript parameters for ArcIMS HTML Viewer
// 	requires aimsDB.js and all modules defined for Query

// global variables

var aimsDBparamPresent = true;
	// Field in layer to match db
var mapIDField = "account"
	// Field in db to match layer
var dbIDField = "account"
var dbIDFieldIsText = false;
	// List of fields to be returned in response
var dbFieldList = "account,ownersname";
	// List of descriptions matching the fields in dbFieldList
var dbFieldListDescript = "Account, Owners Name";
	// the table(s), as in SELECT apn,add2 from MyTable. . . dbTableList="MyTable";
var dbTableList = "main";
var addIDQuotes = false;
var highlightIdentify=true;


	// The next two lines (following these comments) are for initializing the variables
	// These are set in MapFrame.htm for appropriate implementation
	// Set variable dbType in default.htm - VB, CF, or ASP
var dbSQLurl = "/servlet/com.esri.esrimap.Esrimap";

// ASP
	// comment out the next two lines if not using ASP
var dbSQLurl = appDir + "arcims_process.asp";
var dbAccessType="ASP";
	// additional parameters must be set in dbParams.asp
// end ASP section


