// JavaScript Document Content Page


			function getTDHeight(){
				contentTopLeft 		= getPixelsFromTop(document.getElementById("content_top_left"))
				contentBottomLeft 	= getPixelsFromTop(document.getElementById("content_bottom_left"))
				heightOfCellLeft 	= (contentBottomLeft - contentTopLeft);
				
				contentTopRight 	= getPixelsFromTop(document.getElementById("content_top_right"))
				contentBottomRight 	= getPixelsFromTop(document.getElementById("content_bottom_right"))
				heightOfCellRight 	= (contentBottomRight - contentTopRight);
				
				if (heightOfCellLeft >  heightOfCellRight){
				document.getElementById("right_colum").style.height = heightOfCellLeft + "px";
				}
				
				if (heightOfCellRight > heightOfCellLeft){
				document.getElementById("left_colum").style.height = heightOfCellRight + "px";
				}
				
			}
			function getPixelsFromTop(obj){
				objFromTop = obj.offsetTop;
				while(obj.offsetParent!=null) {
					objParent = obj.offsetParent;
					objFromTop += objParent.offsetTop;
					obj = objParent;
				}
				return objFromTop;
			}
			
