<!--
// function maxWindow() {
	window.moveTo(0, 0);
	var maxW = screen.availWidth;
	var maxH = screen.availHeight;
	if (maxW > 2400) {
		window.moveTo((maxW-2400)/2, 0);
		maxW = 2400;
	}
	if (document.all) {
		top.window.resizeTo(maxW, maxH);
	} else if (document.layers || document.getElementById) {
		if (top.window.outerWidth<maxW || top.window.outerHeight<maxH) {
			top.window.outerWidth = maxW;
			top.window.outerHeight = maxH;
		}
	}
	self.resizeTo(screen.availWidth,screen.availHeight);
	self.focus();
// }
// window.onload = maxWindow;
// -->