var col=0;
var image=new Array();
function open_img(adr,w,h)
  {
  if (document.layers)
   {
   image=window.open('','img','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=2,resizable=0,width='+w);
   image.document.open();
   image.document.write("<html><head><title>Edward Belsky - Gallery</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 bgcolor=#211112><center><a href=javascript:window.close();><img src='"+adr+"' border=0 width="+w+" height="+h+" alt='Close window'></a></center></body></html>");
   image.focus();
   }
  else
   {
   if (col>0) {image[col-1].close();}
   image[col]=window.open('','img','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=2,resizable=0,width='+w);
   image[col].document.open();
   image[col].document.write("<html><head><title>Edward Belsky - Gallery</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 bgcolor=#211112><center><a href=javascript:window.close();><img src='"+adr+"' border=0 width="+w+" height="+h+" alt='Close window'></a></center></body></html>");
   image[col].focus();
   col=col+1;
   }


  }


function openWin(w,h,adr)
  {
   window.open(adr,'','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=2,resizable=0,width='+w);
  }