  function image_open(file) {
	var str_buffer = new String (
	"<html>\n"+
	"<head>\n"+
	"<title>Manufaktura El Calvera</title>\n"+
	"<link rel=\"stylesheet\" href=\"detail.css\" type=\"text/css\" >\n"+
	"</head>\n"+
	"<body id=\"detail\" onload=\"velikost();\">\n"+
	"<center>\n"+
  "<a href=\"javascript:window.close();\"><img name=\"obr\" src=\"" + file + "\"  title=\"obrázek zavřete kliknutím\"></a>\n"+
  "</center>\n"+
  "</body>\n</html>");
var okno = window.open('','new','status=0,toolbar=0,menubar=0,width=620,height=420');
okno.opener = self;
okno.focus();
var okno_doc = okno.document;
okno_doc.write (str_buffer);
}
