function DisplayImage(picURL,picWidth,picHeight,picTitle){
newWindow=window.open(picURL,'newWin','top=100,left=100,toolbar=no,width='+picWidth+',height='+picHeight)
newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body title="Zavřete kliknutím" onclick="self.close();" style="cursor:pointer;cursor:hand;background:url('+picURL+') top left no-repeat;"><\/body><\/html>')
newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
newWindow.focus()
}

