function OnResetEditPos()
{
  var
    aoA, n, oA;
    
  if (document.all)
  {
    aoA = document.all.tags('A');
    for (n = 0; n < aoA.length; n++)
    {
      oA = aoA[n];
      if (oA.style.position == 'absolute')
      {
        oA.style.visibility = 'hidden';
        oA.style.visibility = '';
      }
    }
  }
}

