function fixColumnSize() {	document.getElementById("top_info_content").style.height = document.getElementById("top_info_description").offsetHeight - 32 + 'px';	document.getElementById("top_media_content").style.height = document.getElementById("top_media_description").offsetHeight - 32 + 'px';	fixFooterPosition();}function fixFooterPosition() {	if(window.innerHeight != undefined) {		if(window.innerHeight ==  document.height) {			document.getElementById("footer").style.position = "absolute";			document.getElementById("footer").style.bottom = "0";		} else {			document.getElementById("footer").style.position = "relative";		}	} else {		if(document.documentElement.clientHeight > document.body.scrollHeight) {			document.getElementById("footer").style.position = "absolute";			document.getElementById("footer").style.bottom = "0";			document.getElementById("footer").style.left = "0";		} else {			document.getElementById("footer").style.position = "relative";		}	}}function resizeGameWindow() {	if(window.innerHeight != undefined) {		var iH = window.innerHeight;		var iW = window.innerWidth;		var oH = window.outerHeight;		var oW = window.outerWidth;		var bH = oH - iH;		var bW = oW - iW;		window.resizeTo(640+bW+8, 480+bH+8);		window.scrollbars.visible = false;	} else {		window.resizeTo(680, 680);	}}
