//gllypop.js RCD 22/03/2009

  function openpopup(w) {
	  var pic = w.substr(0,15);
	  var title = w.substr(16);
	  var myHTML = '<html><head><title>Surrey Botanical Society - Photo Gallery</title></head><body onload="self.focus()" onblur="self.close()">';
    myHTML += '<div align="center"><img src="'+pic+'">';
    myHTML += '<p style="font-family:arial;font-size:14px;">' + title + '</p>';
    myHTML += '<br>';
    myHTML += '</font></div></body></html>';
    preWindow=open("","","width=640,height=550,toolbar=no,resizable=yes,scrollbars=no,top=0,left=0");
    preWindow.document.open();
    preWindow.document.write(myHTML);
    preWindow.document.close();
  }