adjustHeight();
function adjustHeight(){
  var minHeight=500;
  var elm=document.getElementById('centerContent');
  var h=elm.clientHeight;
  if(h==null||h<=0)h=elm.offsetHeight;
  if(h==null||h<=0)return;
  if(h<minHeight)elm.style.height=minHeight+'px';
}


