// JavaScript Document

function openPopupWindow(theUrl, width, height)
{
    window.open(encodeURI(theUrl), "_blank", "toolbar=no,scrollbars=no,location=no,status=no,width="+width+",height="+height+",resizable=0,screenX=150,screenY=150", false);
}


function GetHeight()
{
        var y = 0;
        if (self.innerHeight)
        {
                y = self.innerHeight;
        }
        else if (document.documentElement && document.documentElement.clientHeight)
        {
                y = document.documentElement.clientHeight;
        }
        else if (document.body)
        {
                y = document.body.clientHeight;
        }
        return y;
}

function measurePage()
{

  if (document.getElementById('sideBarLeft').offsetHeight < GetHeight() - 220)
  document.getElementById('sideBarLeft').style.height = GetHeight() - 220 + "px";
  
}



// ANKETA



