// Vale Care Link Global Functions
// Dave Page, 10/01/2001
// Copyright 2001, The Vale Housing Association Ltd.

// Stop NN4 losing Style Sheet on Resize
function NN4_reloadPage(init) {
  if (init==true) {
    if ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4)) {
      document.NN4_pgW=innerWidth;
      document.NN4_pgH=innerHeight;
      onresize=NN4_reloadPage;
    }
  } else if (innerWidth!=document.NN4_pgW || innerHeight!=document.NN4_pgH) {
    location.reload();
  }
}
NN4_reloadPage(true);

