
//--------------------------------------------------------------------
function ReloadCurrentPage()
//--------------------------------------------------------------------
{

   window.location.reload();// reload to solve for bug
}


//--------------------------------------------------------------------
function InstallNetscapeResizeReload()
//--------------------------------------------------------------------
{
  //  install event handler

    onresize = ReloadCurrentPage;

}

// run this
InstallNetscapeResizeReload();
