//*** <Scale.js> ***
function cfgVEGAScaleMouseOver(tr)
{
 var id=tr.parentNode.getAttribute("Signature");
  if(tr.parentNode.getAttribute(id+"-Index") != tr.rowIndex) tr.className=id+"-Marker";
}
//***
function cfgVEGAScaleMouseOut(tr)
{
 var id=tr.parentNode.getAttribute("Signature");
  if(tr.parentNode.getAttribute(id+"-Index") != tr.rowIndex) tr.className=tr.getAttribute(id+"-Class");
}
//***
function cfgVEGAScaleMouseClick(tr)
{
 var id=tr.parentNode.getAttribute("Signature");
  if(tr.parentNode.getAttribute(id+"-Click") == 0) return;
 var el=null;
  if(tr.parentNode.getAttribute(id+"-Index") >= 0) el=tr.parentNode.rows[tr.parentNode.getAttribute(id+"-Index")];
  tr.parentNode.setAttribute(id+"-Index",tr.rowIndex);
  tr.className=id+"-Select";
  if(el) cfgVEGAScaleMouseOut(el);
}
//*** </Scale.js> ***