﻿function SetGridPosition()
{
  try
  {
    getElement("ScrollX").value = getElement("panel1").scrollLeft;
    getElement("ScrollY").value = getElement("panel1").scrollTop;
  }
  catch(ex)
  {
  }
}

function GetGridPosition()
{
  try
  {
    getElement("panel1").scrollLeft = getElement("ScrollX").value;
    getElement("panel1").scrollTop = getElement("ScrollY").value;
  }
  catch(ex)
  {
  }
}

function doMenuItem2(MenuItem) 
{
  location.href = encodeURI(MenuItem);
}


