// JavaScript Document


function Calculate_The_Content_Dependent_Heights()
{ 
   var The_Minimum_Height = 410; //pixels
   var The_Image_Height =
          document.getElementById( "Live_Page:Body_Content_Image_Wrapper_ID" ).offsetHeight;
		  
   var The_Text_Height =
          document.getElementById( "Live_Page:Body_Content_Main_Text_Wrapper_ID" ).offsetHeight;
		  
   var The_Footer_Links_Height = 0; //pixels
   var The_Footer_Links_Node = document.getElementById( "Live_Page:Body_Content_Footer_Links_Wrapper_ID" );
   if( The_Footer_Links_Node != null )
   {
      The_Footer_Links_Height = The_Footer_Links_Node.offsetHeight;
   };
		  
   var The_Top_Padding    = 12; //pixels
   var The_Center_Space   = 10; //pixels
   var The_Bottom_Padding = 12; //pixels
   
   var The_Body_Content_Positioning_Context_Height =
           Math.max( The_Minimum_Height, The_Top_Padding +
                                         The_Image_Height +
										 The_Center_Space +
										 Math.max( The_Text_Height, The_Footer_Links_Height ) +
										 The_Bottom_Padding                                     );
                                                    
		  
   var The_Item_Specific_Transition_Target_Values = ""

//   alert( "Height=" +
//		  document.getElementById( "Live_Page:Body_Content_Positioning_Context_ID" ).offsetHeight +
//		  "<br/>" +
//		  "New Height=" +
//		  The_Body_Content_Positioning_Context_Height +
//		  "<br/>"
//		  );
   
   document.getElementById( "Live_Page:Body_Content_Positioning_Context_ID" ).style.height =
      The_Body_Content_Positioning_Context_Height + "px";  
	  
//   alert( "Height=" +
//		  document.getElementById( "Live_Page:Body_Content_Positioning_Context_ID" ).offsetHeight +
//		  "<br/>" +
//		  "New Height=" +
//		  The_Body_Content_Positioning_Context_Height +
//		  "<br/>"
//		  );
   
}

