var col=0;
var image=new Array();
// Open Screenshot page
function PopUpOpen(picsrc,x,y,comment, ihtml)
{
  //
  var maxWidth=screen.availWidth;
  var maxHeight=screen.availHeight;

  var needWidth = x + 10;
  var needHeight = y + 30;

  var scrollbars = 'no';
  if(needWidth > maxWidth) {
    winWidth = maxWidth;
    scrollbars = 'yes';
  } else winWidth = needWidth;
  if(needHeight > maxHeight) {
    winHeight = maxHeight; 
    scrollbars = 'yes';
  }else winHeight = needHeight;

  //alert(winWidth + ' x ' + winHeight);
  var left = screen.availWidth/2 - winWidth/2;
  if(left < 0) left = 5;
  var top = screen.availHeight/2 - winHeight/2;
  if(top < 0) top = 5;

  if (document.layers) {
   image=window.open('','img','toolbar=no,location=0,directories=no,menubar=0,height='+winHeight+',width='+winWidth+', top=' + top + ', left=' + left +', resizable=yes,scrollbars=' + scrollbars);
   image.document.open();
   image.document.write('<html><head><title>ОАО Бердянские жатки - традиции и качество успешной уборки</title><script>window.resizeTo('+winWidth+', '+winHeight+')</script></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor="#046237"><center><table height=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center><a href=# onclick=\"window.close()\"><img id="picture" style="border: 0px Black Solid; padding: 1px;" src="' + picsrc + '" width=' + x + ' height = ' + y + ' alt="Кликните, чтобы закрыть окно" vspace=5></a><br><font size=-1>' + comment + '</font></td></tr></table></center></body></html>');
   image.focus();
  } else {  
   //alert(col);
   if (col>0) {image[col-1].close();}
   image[col]=window.open('','img'+col,'toolbar=no,location=0,directories=no,menubar=0,height='+winHeight+',width='+winWidth+', top=' + top + ', left=' + left +', resizable=yes,scrollbars=' + scrollbars);
   image[col].document.open();
   image[col].document.write('<html><head><title>ОАО Бердянские жатки - традиции и качество успешной уборки</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor="#046237"><center><table height=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center><a href=# onclick=\"window.close()\"><img id="picture" style="border: 0px Black Solid; padding: 1px;" src="' + picsrc + '" width=' + x + ' height = ' + y + ' alt="Кликните, чтобы закрыть окно" vspace=5></a><br><font size=-1>' + comment + '</font></td></tr></table></center><script>if(navigator.appName != \'Opera\' || navigator.appName == \'Opera\' && navigator.appVersion >= \'7\') window.resizeTo('+winWidth+', '+winHeight+')</script></body></html>');
   image[col].focus();
   col=col+1;
  }
  if(ihtml == 1) window.location.reload();
}
