function PIC(url, jmeno, w, h) {
	win_x=(screen.width-w)/2;
	win_y=(screen.height-h)/2;
	popupWin = window.open("", jmeno, 'resizable=0,top=0,left=0,menubar=0,status=1,width=' + w + ',height=' + h + ',left=' + win_x + ',top=' + win_y);
	popupWin.document.writeln("<html>\n<head>\n<title>Galerie</title>\n</head>");
	popupWin.document.writeln("<body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	popupWin.document.writeln("<img src=\"" + url +"\" width=\"" + w +"\" height=\"" + h +"\">");
	popupWin.document.writeln("</body></html>");
}