function setAllianceColumns() {	if (document.getElementById){			var areaMenus = document.getElementById('area-menus');		var areaCms = document.getElementById('area-cms');		var areaExtras = document.getElementById('area-extras');				// Let's determine the maximum height out of all columns specified		var height = 400;				if ((areaMenus.offsetHeight + areaMenus.offsetTop) > height) height = (areaMenus.offsetHeight + areaMenus.offsetTop);		if ((areaCms.offsetHeight + areaCms.offsetTop) > height) height = (areaCms.offsetHeight + areaCms.offsetTop);		if ((areaExtras.offsetHeight + areaExtras.offsetTop) > height) height = (areaExtras.offsetHeight + areaExtras.offsetTop);		// Let's set all columns to that maximum height		areaMenus.style.height = (height - areaMenus.offsetTop) + 'px';		areaCms.style.height = (height - areaCms.offsetTop) + 'px';		areaExtras.style.height = (height - areaExtras.offsetTop) + 'px';				document.getElementById('site-content').style.height = height + 'px';						// Now, if the browser's in standards-compliant mode, the height property		// sets the height excluding padding, so we figure the padding out by subtracting the		// old maxHeight from the new offsetHeight, and compensate!  So it works in Safari AND in IE 5.x		//if (divs[i].offsetHeight > maxHeight) {		//	divs[i].style.height = (maxHeight - (divs[i].offsetHeight - maxHeight)) + 'px';			}}function setFormColumns() {	if (document.getElementById){			var areaMenus = document.getElementById('area-menus');		var areaCms = document.getElementById('area-cms-large');				// Let's determine the maximum height out of all columns specified		var height = 400;				if ((areaMenus.offsetHeight + areaMenus.offsetTop) > height) height = (areaMenus.offsetHeight + areaMenus.offsetTop);		if ((areaCms.offsetHeight + areaCms.offsetTop) > height) height = (areaCms.offsetHeight + areaCms.offsetTop);		// Let's set all columns to that maximum height		areaMenus.style.height = (height - areaMenus.offsetTop) + 'px';		areaCms.style.height = (height - areaCms.offsetTop) + 'px';				document.getElementById('site-content').style.height = height + 'px';					}}