<!--
function grafika(img,xx,yy)
{
  var okno=null;
  var xx2=xx+8;
  var yy2=yy+8;
  var x_pos=(screen.width/2-xx2/2);
  var y_pos=((screen.height-80)/2-yy2/2);
  if (y_pos<0) y_pos=0;
  okno=window.open('','','toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=yes,copyhistory=no,width='+xx2+',height='+yy2+',left='+x_pos+',top='+y_pos);
  okno.document.open();
  okno.document.write('<html><head><title></title></head><body style="margin: 4px; padding: 0px;" ><center><img src="'+img+'" border="0" onmouseover="style.cursor=\'pointer\';" onclick="window.close();"></center></html>');
  okno.document.close();
}
-->
