function pop(n,w,h) {
  var maxW = screen.availWidth;
  var maxH = screen.availHeight - 25;
  var s = 0;
  var sw = w + 20;
  var sh = h + 30;
  if (sw < 100) sw = 100;
  if (sh < 100) sh = 100;
  if (sw > maxW) {
    sw = maxW;
    sh = sh + 20;
    s = 1;
  }
  if (sh > maxH) {
    sh = maxH;
    sw = sw + 20;
    s = 1;
  }
  theUrl = n + ".jpg"
  var win = window.open("","_blank","width=" + sw + ",height=" + sh +    ",top=0,left=0,toolbar=no,location=no,menubar=no,resizeable=no,status=no,scrollbars=" + s);
  var doc = win.document;
  doc.open("text/html", "replace");
  doc.writeln("<html>");
  doc.writeln("<head>");
  doc.writeln("<title>" + document.title + " | Bild " + n + "</title>");
  doc.writeln("</head>");
  doc.writeln("<body bgcolor=\"#E1D9BA\">");
  doc.writeln("<img border=\"0\" width=\"" + w + "\" height=\"" + h + "\" src=\"" + theUrl + "\" galleryimg=\"no\">");
  doc.writeln("</body>");
  doc.writeln("</html>");
  doc.close();
  win.focus();
}
