// v1.2.3.5
// ***************************************************************************
// common.js
// Contains the global constants
// ***************************************************************************
var __IUIdPart = "InteractionUnit";     // Prefix for Interaction Unit delimiters
var __NavigationIdPart = "navigation";  // Prefix for Navigation delimiters
var __PopulationIdPart = "IUPopulationGrid";  // Prefix for Population delimiters
var __MultiSelId = "chkMultiSelection"; // ID of the MultiSelection checkbox
var __CheckAllId = "chkAll";            // ID of the Check All checkbox
var __checkControl = "checkbox";        // Name of the control to act as checkboxes
var __disabledAttrName = "disabled";    // Name o fthe attribute to represent disabled navigations

var __CSSRowSelected = "selectedRowDataGrid";   // CSS Class for selected rows
var __CSSTableSelected = "selectedTableDataList";   // CSS Class for selected table
var __CSSNavDisabled = "itemDisabled";          // CSS Class for disabled navigations
var __CSSNavEnabled  = "item";                  // CSS Class for enabled navigations

var __aTAG = "A";       // <A></A>
var __divTAG = "DIV";   // <DIV></DIV>
var __trTAG = "TR";     // <TR></TR>
var __tableTAG = "TABLE";     // <TR></TR>

var __IIUArray = new Array();           // Array with the instance interaction units id names
var __navigationsArray = new Array();   // Array with the navigations id names
