<!--

var iMaxHeight
var iHeight = 145;

function MaximizeHeight () {
  if (navigator.appName == 'Netscape'){
    iMaxHeight = window.innerHeight - iHeight;
    iMaxHeight = iMaxHeight.toString();
    } 
  else { // If Not Netscape, then return 100%
    iMaxHeight = "100%"; 
  } 

  return iMaxHeight;

} 
// End Function
		
// Stops error messages from popping up in the browser window
function stopError() {
  return true;
} 
// End Function   


function resizeIt() {
  if (saveInnerWidth < window.innerWidth || 
    saveInnerWidth > window.innerWidth || 
    saveInnerHeight > window.innerHeight || 
    saveInnerHeight < window.innerHeight ) 
    {
      window.history.go(0);
    }
} 
// End Function

// Stops error messages from popping up in the browser window
// window.onerror = stopError;
		
// NS resize bug fix
if(!window.saveInnerWidth) {
  window.onresize = resizeIt;
  window.saveInnerWidth = window.innerWidth;
  window.saveInnerHeight = window.innerHeight;
  }
 
//-->