///////////////////////////////////////////////////////////////////////////////////////////////////
//
// $Id: CommonClasses.js,v 1.1 2008/03/19 08:50:52 markr Exp markr $
//
///////////////////////////////////////////////////////////////////////////////////////////////////


///////////////////////////////////////////////////////////////////////////////////////////////////
// Define the classes
///////////////////////////////////////////////////////////////////////////////////////////////////
function ColourClass(chckBoxName, chckBoxIndex, file) {
   this.chckBoxName = chckBoxName;
   this.chckBoxIndex = chckBoxIndex;
   this.file = file;
   this.isChecked = true;
}
function MarkerClass(theMarker, colourIndex, theIssue, theLocation, theCount)
{
   this.theMarker = theMarker;
   this.colourIndex = colourIndex;
   this.theIssue = theIssue;
   this.theLocation = theLocation;
   this.theCount = theCount;
   this.matchSearch = true;
   this.inRange = true;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
