// JavaScript Documentfunction adjustLayout(){					xHide("foot");		// Get natural height of the tallest column	var lHeight = xHeight("leftcolumn");	var rHeight = xHeight("rightcolumn");		//Set the max height	var maxHeight = Math.max(lHeight, rHeight);		// Assign max height to side columns	xHeight("leftcolumn", maxHeight);	xHeight("rightcolumn", maxHeight);		xShow("foot");}function adjustLayoutinterior(){					xHide("foot");		// Get natural height of the tallest column	var lHeight = xHeight("leftcolumninterior");	var rHeight = xHeight("rightcolumninterior");		//Set the max height	var maxHeight = Math.max(lHeight, rHeight);		// Assign max height to side columns	xHeight("leftcolumninterior", maxHeight);	xHeight("rightcolumninterior", maxHeight);		xShow("foot");}function adjustLayoutTable(){							// Get natural height of the tallest column	var lHeight = xHeight("lefttable");	var rHeight = xHeight("righttable");		//Set the max height	var maxHeight = Math.max(lHeight, rHeight);		// Assign max height to side columns	xHeight("lefttable", maxHeight);	xHeight("righttable", maxHeight);				// Get natural height of the tallest column	var lHeight = xHeight("lefttabletwo");	var rHeight = xHeight("righttabletwo");		//Set the max height	var maxHeight = Math.max(lHeight, rHeight);		// Assign max height to side columns	xHeight("lefttabletwo", maxHeight);	xHeight("righttabletwo", maxHeight);	}