var newWindow = null
function makeNewWindow(name,width,height) {
  var rozmery = null
  if(width>=1024){
  	width = 1000
  }
  if(height>=768){
  	height = 760 + ",scrollbars"
  }
  rozmery = "HEIGHT=" + height + ",WIDTH=" + width 
  // store new window object in global variable
  newWindow = window.open("","",rozmery)
  if (newWindow != null) {
    var newContent =  "<HTML><HEAD><TITLE>Hana Horecká</TITLE></HEAD>"
    newContent += "<BODY bgcolor=black>"
    newContent += "<IMG SRC='" + name + "' BORDER='0' ALIGN='CENTER' VSPACE='0' onclick='self.close()'>"
    newContent += "</BODY></HTML>"
    // write HTML to new window document
    newWindow.document.write(newContent)
    newWindow.document.close()
  }

}