// JavaScript Document

function setContenSize()
{
	
	var content			= document.getElementById("Content");
	var content_height 	= parseInt(content.style.height);
	
	var outer 			= document.getElementById("Outer");
	var outer_height 	=  parseInt(outer.style.height);
	
	var height_all 		= parseInt(content_height + outer_height);
	
	document.getElementById("Outer").style.height = (height_all);
	alert (height_all);
	
	
}
