<!--

function resizeWindow(_width, _height) {
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName.indexOf("Netscape") != -1) {
			top.innerWidth = _width;
			top.innerHeight = _height;
		} else {
			top.resizeBy(_width - document.body.clientWidth, _height - document.body.clientHeight);
		}
	}
	
	centerWindow(_width, _height);
}

function centerWindow(_width, _height) {
	if (window.screen) {
		var aw = screen.availWidth - 10;
		var ah = screen.availHeight - 30;
		
		top.moveTo((aw-_width)/2, (ah-_height)/2);
	}
}
//-->
