
function popupImage(image_file, panorama)
{
  var width = 800;
  var height = 600;
  if (panorama == 1)
  {
    width = 1000;
    height = 400;
  }
  var top = (screen.availHeight - height) / 2;
  var left = (screen.availWidth - width) / 2;
  image = window.open('', 'image','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,left='+left+',top='+top+',width='+width+',height='+height+',resizable=0');
  image.document.clear();
  image.document.writeln('<html><head><title>architekturbüro di josef bacher</title></head>');
  image.document.writeln('<body bgcolor="#000000" topmargin="0" leftmargin="0" onblur="self.close()">');
  image.document.writeln('<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="center">');
  image.document.writeln('<a href="javascript:self.close()">');
  image.document.writeln('<img border="0" src="/_images/image.php?file='+image_file+'&amp;width='+width+'&amp;height='+height+'&amp;resample=1"></a>');
  image.document.writeln('</td></tr></table>');
  image.document.writeln('</body></html>');
  image.document.close();
  image.focus();
}

