	// für FMS
	function fullSize(content) {
		if (document.getElementById) {
			var windowHeight = getWindowHeight();
			if (windowHeight > 0) {
				var contentElement = document.getElementById(content);
				var contentHeight  = contentElement.offsetHeight;
				contentElement.style.height = (windowHeight - 140) + 'px';
			}
		}
	}
