	function openMaxWin(winURL, winName){
		winFeatures = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + 
									screen.availWidth + ",height=" + screen.availHeight + ",top=0,left=0";
		var popWin = window.open(winURL, "winName", winFeatures);
	}
	function maximizeWindow() {
		if (parseInt(navigator.appVersion)>3) {
			if (navigator.appName=="Netscape") {
				if (top.screenX>0 || top.screenY>0) top.moveTo(0,0);
				if (top.outerWidth < screen.availWidth)
					top.outerWidth=screen.availWidth;
				if (top.outerHeight < screen.availHeight) 
					top.outerHeight=screen.availHeight;
			} else {
				top.moveTo(-4,-4);
				top.resizeTo(screen.availWidth+8,screen.availHeight+8);
			}
		}
	}
