function handleResize() {
	var wHeight = getInsideWindowHeight();
	var wWidth = getInsideWindowWidth();

	var content = getElement("id", "content");
	var menu = getElement("id", "menu");
	var menuLabel = getElement("id", "menuLabel");

	// adjust content height to window (minus header and footer)
	content.style.height = Math.abs(wHeight - 170 - 25) + "px";

	// adjust elements to window width
	var menuRightBorder = menu.offsetLeft + menu.offsetWidth;
//	if (wWidth < menuRightBorder * 2 + content.offsetWidth) {
//		content.style.marginLeft = "10px";
//		content.style.left = menuRightBorder + "px";
//	} else {
//		content.style.marginLeft = "-300px";
//		content.style.left = "50%";
//	}
	if (wWidth < (menuRightBorder + 10) * 2 + content.offsetWidth) {
		enableMenuHiding(true);
	} else {
		enableMenuHiding(false);
	}

	if (wWidth < 600) {
		content.style.position = "relative";
		content.style.width = "";
	} else {
		content.style.position = "fixed";
		content.style.width = "600px";
	}
}

