// JavaScript Document home page content fill


			function getTDHeight(){
				contentTopLeft 		= getPixelsFromTop(document.getElementById("content_top_left"))
				contentBottomLeft 	= getPixelsFromTop(document.getElementById("content_bottom_left"))
				heightOfCellLeft 	= (contentBottomLeft - contentTopLeft - 10);
				
				contentTopMid 		= getPixelsFromTop(document.getElementById("content_top_mid"))
				contentBottomMid 	= getPixelsFromTop(document.getElementById("content_bottom_mid"))
				heightOfCellMid 	= (contentBottomMid - contentTopMid - 10);
				
				contentTopRight 	= getPixelsFromTop(document.getElementById("content_top_right"))
				contentBottomRight 	= getPixelsFromTop(document.getElementById("content_bottom_right"))
				heightOfCellRight 	= (contentBottomRight - contentTopRight - 10);
				
				if (heightOfCellLeft > heightOfCellMid && heightOfCellLeft > heightOfCellRight){
				document.getElementById("right_colum").style.height = heightOfCellLeft + "px";
				}
				
				if (heightOfCellMid > heightOfCellLeft && heightOfCellMid > heightOfCellRight){
				document.getElementById("left_colum").style.height = heightOfCellMid + "px";
				document.getElementById("right_colum").style.height = heightOfCellMid + "px";
				}
				
				if (heightOfCellRight > heightOfCellLeft && heightOfCellRight > heightOfCellMid){
				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;
			}
			
	