//gllypop.js RCD 10/03/2010

  function openpopup(pic, title) {
	  var myHTML = '<html><head><title>Freshwater Village Association - Photo Galleries</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();
  }