<!--
function fGetPreviousPage()
{
   if ((self.parent.length == 2))
   {
      history.back();
      //parent.frames("Main_Body").document.location.href="javascript:history.back()";
   }
   else   // JavaScript1.1 of IE 3 does not support length
   {
      self.parent.history.go(-1);
   }
}
function fGetNextPage(){history.forward();}
// -->
