ccMinHeight = function()
{ 
	 var cc;	 
	 cc = document.getElementById("content_container");
	 if(cc.offsetHeight < 349)
	 {
		 cc.style.height = 349 + "px";
	 }
} 

window.onload=function()
{ 
     if(document.getElementById)
	 { 
          ccMinHeight();
     } 
} 