function open_window(picture,title,width,height)
           {
           img=new Image();
           img.src=picture;
           x=Math.round((screen.availWidth/2)-(width/2));
           win=window.open("","win","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+width+",height="+height+",left="+x);
           win.document.writeln("<html><head><title>"+title+"</title><meta http-equiv='Content-Type' content='text/html; charset=Windows-1250'></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><div align='center'><img src='"+picture+"' onClick='window.close()' title='klikni pro zavøení'>");
           }
