// doFullHeight
function doFullHeight() {
  var wrapperHeight = document.getElementById('wrapper').offsetHeight;
  if  (wrapperHeight < viewportheight) {
    needHeight = viewportheight-383;
    document.getElementById('content_container').style.height = needHeight + 'px'; 
  }else {
  
  }
}
