function correctTagsBlock() {
    document.getElementById("tagsback").style.width = document.getElementById("tags").offsetWidth + "px";
    document.getElementById("tagsback").style.height = document.getElementById("tags").offsetHeight + "px";
    if (document.getElementById("footer")) document.getElementById("footer").style.width = "100%";  // фикс для ие7
  }
  correctTagsBlock();
  if (window.addEventListener) {
      window.addEventListener('resize', correctTagsBlock, false);
      window.addEventListener('load', correctTagsBlock, false);  // фикс для Хрома
  } else if (window.attachEvent) {
      window.attachEvent('onresize', correctTagsBlock);
  }
