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 = '';
      }
    }
  }
}

function NZPPDF_MyLoan_Toggle(nLoanIndex, nLoanCount)
{
  var
    nIndex;
    
  for (nIndex = 0; nIndex < nLoanCount; nIndex++)
  {
    document.getElementById('Loan' + nIndex).style.display = (nLoanIndex == nIndex ? '' : 'none');
  }
}
