  function resizing (offset) {
    if (document.all) {
      val = document.documentElement.clientHeight - offset;
      if (val > 0)
	eval ('document.all["dyndiv"].style.height = "' + val + 'px";');
    }
    else
    {
	eval ('document.getElementById("dyndiv").style.height = "' + (window.innerHeight - offset) + 'px";');
    }
  }

  function popup (url, width, height)
  {
    full = 'front_content.php' + url;
    foo = window.open (full, 'tsgpopup', 'width='+width+',height='+height+',left=50,top=50,scrollbars=no');
  }

  function showArchive (idart)
  {

    self.location.href = "/cms/front_content.php?idart=193&showArchive=" + idart;

  }  