function Strip()
{
  var iHeight = document.getElementById('window_content').clientHeight;
  if(iHeight < 360) var iHeight = 360;
  document.getElementById('strip_holder').style.height = document.getElementById('strip_holder_inner').style.height = iHeight - 70 + 'px';
}

