function hints_off(hint)
{
  hideLayer(document.all(hint));
}

function init_code_hint()
{
  hints_off();
}

function hint_on(hint)
{
  showLayer(document.all(hint));

  x = window.event.clientX + document.body.scrollLeft-2;
  y = window.event.clientY + document.body.scrollTop+19;

  moveLayerTo(document.all(hint), x, y) 
}

// SAYA Charts

function hints_off1(hint)
{
  hideLayer(document.all(hint));
}

function init_code_hint1()
{
  hints_off1();
}

function hint_on1(hint)
{
  showLayer(document.all(hint));

  x = window.event.clientX + document.body.scrollLeft -500;
  y = window.event.clientY + document.body.scrollTop-348;

  moveLayerTo(document.all(hint), x, y) 
}


