<!--
// indexScripts (contains- function to reload page if window in Nav4 is resized and a function to break out if
// my index, or other multi-frame page, finds it'self in a sub-frame):
//
// Function to resize in Nav4:
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//
// Function to break out if framed:
if (top != self) {
top.location = self.location
}
//
// -->
