<!--
var photowin = null;

function openPhoto(photo){
	if(photowin != null){
	photowin.close();
	photowin = null;
	}
var picture = 'images/members/'+photo+'.jpg';
photowin = window.open('', 'Photo', 'width=640,height=480,top=30,left=30');
photowin.document.write('<html><head><title>Member Photo</title></head><body style="margin:0px"><img name="pic" src="'+picture+'" alt="'+photo+'" border=2 onError="document.pic.alt=\'Picture not available\'"></body></html>');
}
// -->