



/* This section of code fixes a netscape resizing bug for DHTML pages.

If you use this code please leave these comments in place so that

others may benefit.  You'll need to also un-remark the ns4 line by taking out

the two //'s at the beginning.  For use by anyone who needs it, this code

was created for by Glenn Davis of Project Cool, Inc. */



ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ))

function ns4bugfix(){

        if (document.pcool.ns4bugfix.startWidth != window.innerWidth || document.pcool.ns4bugfix.startHeight != window.innerHeight){

                document.location = document.location

        }

}



if (ns4 &&(typeof document.pcool == 'undefined')){

          document.pcool = new Object;

          document.pcool.ns4bugfix = new Object;

      document.pcool.ns4bugfix.startWidth = window.innerWidth;

      document.pcool.ns4bugfix.startHeight = window.innerHeight;

          window.onresize = ns4bugfix;

}

//  This line marks the end of the netscape resize bugfix.






