function Okno(obrazek)  {
  okno = window.open("fotka.php?obrazek="+obrazek,"Fotka","scrollbars=no,height=300,width=300,left=10,top=10");
  okno.focus();
  }

var picWin = null;
function showPic(pic){
	if (picWin && !picWin.closed) picWin.close();
	pageDoc = '<html><head><title>Inpeco Interier - fotografie</title></head>';
	pageDoc += '<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">';
	pageDoc += '<A href="javascript:window.close()"><img border=0 src="'+pic+'" alt="Kliknutím na fotografii zavøete okno"></a>';
	pageDoc += '</body></html>';
	thePic = new Image();
	thePic.src = pic;
	attr = 'width=' + thePic.width;
	attr += ', height=' + thePic.height;
	attr += ', left=20';
	attr += ', top=20';
	picWin = window.open('', 'picWin', attr);
	picWin.document.write(pageDoc);
}

