		
function obrazek(url, x, y)
 {
  var okno = window.open("", "", "width="+(x+30)+",height="+(y+85));
  okno.innerWidth = (x+30);
  okno.innerHeight = (y+85);
  okno.document.write("<html><head><title>Fotogallery</title></head>");
  okno.document.write("<body style=\"margin:0; paddidng: 0\"><img src=\""+url+"\" width=\""+x+"\" height=\""+y+"\" style=\"margin: 15px 15px 0 15px;\" onClick=\"window.close();\" alt=\"Click to close window\"><br></body></html>");
 }
 
 function okno(url, x, y)
 {
  var okno = window.open(url, "", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
 }
 

function shoot(theUrl, winName, features) {
window.open(theUrl, winName, features);

}

