
<!---
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;
    var X = 10;
    var Y = 10;
    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,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('<HTML><HEAD>');
    bigpicWin.document.write('<TITLE>'+'ÎÎÎ Ñóïåð Ïîë'+'</TITLE>');
    bigpicWin.document.write('<meta http-equiv="imagetoolbar" content="no"><style>.large {FONT-WEIGHT: bold; FONT-SIZE: 16px; COLOR: 0D5209; FONT-FAMILY:  Arial; TEXT-DECORATION: none}</style></HEAD>');
    bigpicWin.document.write('<BODY MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=0 TOPMARGIN=0 BOTTOMMARGIN=0 rightmargin=0>');
    bigpicWin.document.write('<table width=100% border=0 cellpadding=0 cellspacing=0><!--tr><td background=images/index_09-1.jpg><img src=images/0.gif width=223 height=26></tr--><tr><td class=large>');
    bigpicWin.document.write('<A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" border=0></A>'+'');
    bigpicWin.document.write('</td></tr><!--tr><td background=images/index_09-1.jpg height=26>&nbsp;</td></tr--></table></BODY>');
    bigpicWin.document.write('</HTML>');
    bigpicWin.document.close()

    bigpicWin.focus();
  }
  else
  {
    bigpicWin.focus();
  }
}
//--->