		window.moveTo (0,0);
		bAgent = window.navigator.userAgent;
		bAppName = window.navigator.appName;
		bVersion = window.navigator.appVersion;
		bMozIdx = bAgent.indexOf("Mac");

		if ((bMozIdx >= 10) && (bAppName.indexOf("Netscape") == 0) && (bVersion.substring(0,1) <=4) ) {
				if (bVersion.substring(0,1) <=4) {
					alert ('Your browser version will not work with these pages. Please change to Explorer 4 or later, or Netscape 6 for proper functionality.')
				}
				else if (bVersion.substring(0,1) >=5) {
					var wide = window.screen.availWidth-27;
					var high = window.screen.availHeight-150;
					window.resizeTo (wide,high);
				}
		}

		if ((bMozIdx >= 10) && (bAppName.indexOf("Netscape") == -1)) {
				var wide = window.screen.availWidth;
				var high = window.screen.availHeight-10;
				window.resizeTo (wide,high);
		}
		
		else if ((bAppName.indexOf("Explorer") >= 0) && (bMozIdx <= 0)) {
				var wide = window.screen.availWidth;
				var high = window.screen.availHeight;
				window.resizeTo (wide,high);
		}

		else if ((bAppName.indexOf("Netscape") <= 5) && (bVersion.substring(0,1) <=4) && (bMozIdx <=0)) {
				alert ('Your browser version will not work with these pages. Please change to Explorer 4 or later, or Netscape 6 for proper functionality.');
		}
		
		else if ((bAppName.indexOf("Netscape") <= 5) && (bVersion.substring(0,1) >=5) && (bMozIdx <=0)) {
				var wide = window.screen.availWidth;
				var high = window.screen.availHeight;
				window.resizeTo (wide,high);
		}
