function popup(stuff, stuffWidth, stuffHeight)
{
  var windowWidth = stuffWidth + 10;
  var windowHeight = stuffHeight + 20;
    
  window.open(stuff, '', 'width=' + windowWidth + ',height=' + windowHeight);
}

