function popup_block(s_id, b_open) {
  var a_divs = document.getElementsByTagName('div');
  for (var i_div_index = 0; i_div_index < a_divs.length; ++i_div_index) {
    var r_div = a_divs[i_div_index];
    var s_class = null;
    if (r_div.getAttribute('class')) {
      s_class = r_div.getAttribute('class');
    }
    else if (r_div.getAttribute('className')) {
      s_class = r_div.getAttribute('className');
    }
    if (s_class && s_class == 'PopupBlock') {
      if (r_div.getAttribute('id') == s_id && b_open) {
        r_div.style.display = 'block';
      }
      else {
        r_div.style.display = 'none';
      }
    }
  }
}

