<!--
function openWindow(id,w,h) {
  okno=new Object;
  var p='';
  p='resizable=no,toolbar=no,status=no,location=no,menubar=no,scrollbars=no,width='+(w+5)+',height='+(h+5)+ ',left=' + (screen.availWidth-w+5)/2 + ',top=' + (screen.availHeight-h+5)/2;
  okno=window.open('empty.html','galeria',p);
  okno.document.open();
  okno.document.write('<HTML><HEAD>');
  okno.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">');
  okno.document.write('<TITLE>L&amp;L - Galeria</TITLE>');
  okno.document.write('</HEAD>');
  okno.document.write('<BODY STYLE="background-color:white;	margin:0px;	padding:0px;">');
  okno.document.write('<TABLE WIDTH="100%" HEIGHT="100%" BORDER="0" CALLPADDING="0" CALLSPACING="0">');
  okno.document.write('<TR><TD VALIGN="middle" ALIGN="center">');
  okno.document.write('<A HREF="javascript:this.close();"><IMG SRC="galeria/'+id+'.jpg" WIDTH="'+w+'" HEIGHT="'+h+'" BORDER="0"></A>');
  okno.document.write('</TD></TR>');
  okno.document.write('</TABLE>');
  okno.document.write('</BODY></HTML>');
  okno.document.close();
  okno.focus();
}
//-->