<!--

// Function that checks the height of the content container div, and resizes the right
// column container to match. Needed for the background image to continue to the bottom.
function CheckResizeDivHeights(){

	if(document.getElementById){
		// 1. Get height of the main container.
		// 2. Resize right column to match.
		
		if(document.getElementById("MiddleContainer") && document.getElementById("RightColumn")){
			// Container height
			var nContainerHeight = document.getElementById("MiddleContainer").offsetHeight;
			var nRightColHeight = document.getElementById("RightColumn").offsetHeight;
		
			// Check right column
			if(nRightColHeight < nContainerHeight){
				document.getElementById("RightColumn").style.height = nContainerHeight + 4 + "px";
			}
		}
	}
}

//-->