  var picWindow = '';
  function picpop(pic,width,height,caption) {
     // close it if its already open
     if (!picWindow.closed && picWindow.location) {
        picWindow.close();
     }

     // open the new one
     picWindow = window.open("","picWindow", "width="+(width+100)+",height="+(height+120)+",scrollbars=yes,statusbar=no,resizable=yes,left=0,top=0")
     if (window.focus) { picWindow.focus(); }
     picWindow.document.open();
     picWindow.document.write('<html><head><title>Fisher Farms :: Down On The Farm</title><style type="text/css">td { font-family: Arial, sans-serif; color: #437111; } td.header { font-size: 16pt; } img { border: 1px solid black; }</style></head><body bgcolor="#ffffff"><table cellpadding="6" cellspacing="0" border="0" width="100%"><tr><td align="center" class="header">Fisher Farms, since 1933</td></tr><tr><td align="center"><img src="'+pic+'"></td></tr><tr><td align="center">'+caption+'</td></tr><tr><td align="center"><a href="javascript:close();">close this window</a></td></tr></table></body></html>');
     picWindow.document.close();
  }
