var newWindow = null
function makeNewWindow(name,width,height) {
  var rozmery = null
  rozmery = "HEIGHT=" + height + ",WIDTH=" + width
  // novy wokno
  newWindow = window.open("","",rozmery)
  if (newWindow != null) {
    var newContent =  "<HTML><HEAD><meta http-equiv\='imagetoolbar' content\='no'><TITLE>Městská policie Vrchlabí</TITLE></HEAD>"
    newContent += "<BODY bgcolor=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>"
    newContent += "<IMG SRC='" + name + "' BORDER='0' ALIGN='CENTER' VSPACE='0' onMouseOver=\"event.srcElement.style.cursor='pointer'\" onclick='self.close()' alt='Kliknutím zavřete'>"
    newContent += "</BODY></HTML>"
    // pise html
    newWindow.document.write(newContent)
    newWindow.document.close()
  }

}
