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("","",rozmery)
 if (newWindow != null) {
  // assemble content for new window
  var newContent = "<HTML><HEAD><TITLE>Fotogalerie</TITLE></HEAD>"
  newContent += "<BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0 BGCOLOR='#C0C0CC'>"
  newContent += "<CENTER><IMG SRC=" + name + " BORDER=0 ALIGN='CENTER' VSPACE=0 onclick='self.close()'>"
     newContent += "<CENTER><TABLE CELLSPACING=5><TR><TD><FONT FACE='Lucida,Verdana' SIZE=2 COLOR='#333366'><B>Okno uzavřete kliknutím na obrázek.</B></FONT></TD></TR></TABLE>"

  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");
};
