// 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 = "P"
	// Field in db to match layer
var dbIDField = "Rollnum15"
var dbIDFieldIsText = false;
	// List of fields to be returned in response
var dbFieldList = "Rollnum15,Reformloc,Mun,Utm_x,Utm_y";
	// List of descriptions matching the fields in dbFieldList
var dbFieldListDescript = "Rollnum15,Reformloc,Mun";
	// the table(s), as in SELECT apn,add2 from MyTable. . . dbTableList="MyTable";
var dbTableList = "AssessmentPoints";
var addIDQuotes = false;
var highlightIdentify=true;

// Tim Walden
// Add code to set the X,Y values for the Assessment Points
var dbAssessmentX = "Utm_x";
	//  X value for UTM coordinates
var dbAssessmentY = "Utm_y";
	//  Y value for UTM coordinates
	
	// The next two lines (following these comments) are for initializing the variables
	// These are set in MapFrame.htm for appropriate implementation

var dbSQLurl = appDir + "arcims_process.asp";
var dbAccessType="ASP";