<!-- Beginning of JavaScript -

// Generic Browser test:

var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && bVer >= 4);
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);

// Note:	The "ifs" below specifically do things for NS4 or IE4.
// 		There is no default action. With the "else" by itself, you risk
//		earlier browsers from attempting to interpret the foreign javascript.
//		Bettter to be safe, than sorry.


function resizeHandler (){
	if (NS4) {
		window.location.reload();
	}
			}

// end function resizeHandler


// - End of JavaScript - -->
