function open_window(url, sirka, vyska) {
  new_win = window.open(url, '_blank', "width="+(sirka)+", height="+(vyska)+", resizable=no, menubar=no, toolbar=no, directories=no, location=no, left=0, top=0");
  new_win.document.write('<'+'?xml version="1.0" encoding="utf-8"?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n<title>Galerie | Nábytek Slezáček</title>\n<style type="text/css">html, body {margin: 0;padding: 0;} img {border: none;}</style>\n</head>\n<body>\n');
  new_win.document.write('<a href="#" onclick="window.close()" title="Zavřít okno"><img src="'+url+'" width="'+sirka+'" height="'+vyska+'" alt="Zavřít okno" />')
  new_win.document.write('\n</body>\n</html>');
  
  return false;
}

