<!---
var bigpicWin = null;

function showbigimage(url, picwidth, picheight, description)
{
  if (!bigpicWin || bigpicWin.closed)
  {
    usrwidth = screen.width;
    usrheight = screen.height;

    winwidth = picwidth;
    winheight = picheight;

    var X = (usrwidth - winwidth) / 2;
    var Y = (usrheight - winheight) / 2;

    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+winwidth+",height="+winheight+",";

    checkie = navigator.appName.indexOf("icrosoft");
    if (checkie == -1)
    {
      properties = properties+"screenX="+X+",screenY="+Y;
    }
    else
    {
      properties = properties+"left="+X+",top="+Y;
    }

    bigpicWin = window.open('','bigpicWin',properties);

    bigpicWin.document.open();
	bigpicWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
    bigpicWin.document.write('<html>\n');
	bigpicWin.document.write('<head>\n');
    bigpicWin.document.write('<title>'+description+'</title>\n');
	bigpicWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">\n');
    bigpicWin.document.write('</head>\n');
    bigpicWin.document.write('<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" bottommargin="0">\n');
    bigpicWin.document.write('<a href="JavaScript:self.close()"><img src="'+url+'" hspace="0" vspace="0" border="0" title="Затвори прозореца"></a>\n');
    bigpicWin.document.write('</body>\n');
    bigpicWin.document.write('</html>');
    bigpicWin.document.close()

    bigpicWin.focus();
  }
  else
  {
    bigpicWin.focus();
  }
}
//--->