var newWindow = null
function makeNewWindow(name,width,height) {
  var rozmery = null
  height += 30
rozmery = "height=" + height + ",width=" + width
  //if (text==undefined) text = ""
 // store new window object in global variable
 newWindow = window.open("","","toolbar=no,scrollbars=no,location=no,status=no,"+rozmery)
 if (newWindow != null) {
  // assemble content for new window
  var newContent = "<html><head><title>Fotogalerie</title></head>"
  newContent += "<body leftmargin=0 topmargin=0><center><div>"
  newContent += "<img src=" + name + " border=0 onclick='self.close()'>"
  newContent += "<div><strong>Okno uzavřete kliknutím na obrázek.</strong></div></div></center>"
  newContent += "</body></html>"
  // write HTML to new window document
  newWindow.document.write(newContent)
  newWindow.document.close()
 }
}

function ImageLauncher(url)
{ window.open(url,"","toolbar=no,scrollbars=no,location=no,status=no,width=480,height=500,resizable=0");
};

function ImageLauncher1(url)
{ window.open(url,"","toolbar=yes,scrollbars=no,location=no,status=no,width=320,height=550,resizable=0");
};
