function openWindow(ImageNumber, w, h) {

var w_width = w + 20;
var w_height = h + 25;
var ImageWindow = window.open('', '', 'width='+w_width+', height='+w_height+', left=10, top=20, scrollbars=yes');

ImageWindow.document.write("<html>\n<head>\n");
ImageWindow.document.write("<title>PUCOVA CHATA<\/title>\n");
ImageWindow.document.write("<\/head>\n<body>\n");
ImageWindow.document.write("<div>\n");
ImageWindow.document.write("<img src=\"./images/"+ImageNumber+".jpg\" width=\""+w+"\" height=\""+h+"\" alt=\"\" style=\"margin: 0px 0px 0px 0px\"\/>");
ImageWindow.document.write("<\/div>\n");
ImageWindow.document.write("<\/body>\n<\/html>\n");
}