// JavaScript Document
/*Function or include file name
Author: Kenneth Fly
Created: 10/3/2003
Last Modified: 10/3/2003
Modifications:
None
Language: Javascript 1.3
Purpose: Handle Browser resizing to reload the page and addresses the Netscape 4.x issue 
with calls to window.reload()
Parameters: none
Browser Compatibility: N4+, IE4+
Dependencies: None
Expected Output: Reloaded page when browser resized.
Errors and Error Handling: None
*/
origWidth = window.innerWidth;
origHeight = window.innerHeight;
function resizehandler(){
if (window.innerWidth != origWidth || window.innerHeight != origHeight||window.innerWidth==undefined){
location.reload();
}
}
