var fensterid = null;

function openWindow (bildurl, bildbreite, bildhoehe)
{
  screenbreite = screen.width;
  screenhoehe = screen.height;

  bildbreite = bildbreite + 100;
  bildhoehe = bildhoehe + 80;

  if (fensterid)
  {
    fensterid.close ();
  }

  if (screenbreite<bildbreite || screenhoehe<bildhoehe)
  {
    fensterid = window.open ('about:blank', 'JoJoThumb', "dependent=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + (screenbreite-100) + ",height=" + (screenhoehe -100) + ",left=0,top=0");
  }
  else
  {
    xoffset = (screenbreite - bildbreite) / 2;
    yoffset = (screenhoehe - bildhoehe) / 4;
    fensterid = window.open ('about:blank', 'JoJoThumb', "dependent=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=" + bildbreite + ",height=" + bildhoehe + "," + "left=" + xoffset + ",top=" + yoffset);
  }

  fensterid.document.open ();
  fensterid.document.write ('<html><head><meta http-equiv="imagetoolbar" content="no"><link href="/scripts/jojo.css" rel="stylesheet" type="text/css"><title>Bildergalerie &copy; cborn-online.de</title></head>');
  fensterid.document.write ('<body background="/images/cborn.png" bgcolor="#cccccc" link="#000000" alink="#000000" vlink="#000000"><table style="width: 100%; height: 100%"><tr><td><center><table cellpadding="0" cellspacing="0" style="border: 15px solid #fff;"><tr><td class="td"><a href="javascript:self.close()"><img src="' + bildurl + '" alt=""></a></td></tr></table></center></td></td></table></body></html>');
  fensterid.document.close();

  fensterid.focus();
}