/* galerie_detail.htm */
function htmlPopup(imageloc, width, height, scroll, title) {
  if(width != null && height != null && scroll != null) {
    HTML = "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>\n"+
           "<html><head>"+
           "<meta http-equiv='content-type' content='text/html; charset=UTF-8'>\n"+
           "<title>"+title+"</title>\n"+
           "<style>body,html{margin:0;padding:0;background-color:#FFFFFF;}</style></head>"+
           "<body><img src='"+ imageloc +"' alt='' border='0' /><br /></body>\n"+
           "</html>";

    if (typeof(popupImage) != "undefined") {
      /*
      if (self.innerHeight && popupImage.innerHeight) {
        popupImage.innerWidth=width;
        popupImage.innerHeight=height;
      }
      else {
        popupImage.close();
      }
      */
      popupImage.close();
    }

    popupImage = window.open("",'htmlpopup','width='+width+',height='+height+',screenX=25,screenY=25,left=25,top=25,toolbar=no,scrollbars='+scroll+',resizable=yes,status=no,menubar=no,directories=no,location=no,dependent=yes');
    popupImage.document.open();
    popupImage.document.write(HTML);
    popupImage.document.close();
    popupImage.focus();
  }
}
