<!--
var photoFlags = new Object();

photoFlags.mikos = false; //Joe Mikos Photography
photoFlags.howard = false; //Howard House Photography
photoFlags.friedler = false; //Nicole Friedler Photography
photoFlags.rare = false; //Rare Brick
photoFlags.steinberg = false; //David Steinberg at The Light House Photography (Note: No new images from him in this website revision, but we are retaining a couple of his images that are currently posted on our Weddings Page)
photoFlags.rohlf = false; //James W. Rohlf (Note: No new images from him in this website revision, but we are retaining a couple of his images that are currently posted on our Meetings Page)
photoFlags.look = false; //Leslie Look
photoFlags.schellhammer = false; //Robert Schellhammer
photoFlags.grant = false; //Debbie Grant
photoFlags.shupe = false; //Gregg Shupe, Freelance PhotoImages
photoFlags.blake = false; //Travis Blake at CLM Media Inc.
photoFlags.stanmar = false; 
photoFlags.rellas = false; 
photoFlags.conklin = false; 
photoFlags.foley = false; 


var photoHtml = new Object();

photoHtml.mikos = 'Joe Mikos Photography';
photoHtml.howard = '<a href="http://howardhousephotography.com" target="_blank">Howard House Photography</a>';
photoHtml.friedler = 'Nicole Friedler Photography';
photoHtml.rare = '<a href="http://www.rarebrick.com" target="_blank">Rare Brick</a>';
photoHtml.steinberg = 'David Steinberg at <a href="http://www.vineyardwedding.com" target="_blank">The Light House Photography</a>';
photoHtml.rohlf = 'James W. Rohlf';
photoHtml.look = 'Leslie Look';
photoHtml.schellhammer = 'Robert Schellhammer';
photoHtml.grant = 'Debbie Grant';
photoHtml.shupe = 'Gregg Shupe Freelance PhotoImages';
photoHtml.blake = 'Travis Blake at CLM Media Inc.';
photoHtml.stanmar = 'Stanmar';
photoHtml.rellas = 'Nicholas Rellas';
photoHtml.conklin = 'Kristen Leigh Conklin';
photoHtml.foley = 'Jack Foley Photography';


function writePhotos() {
	var photoSep = ', ';
	var writeHtml = 'Photography by: ';
	if(photoFlags.mikos == true) writeHtml+= photoHtml.mikos + photoSep;
	if(photoFlags.howard == true) writeHtml+= photoHtml.howard + photoSep;
	if(photoFlags.friedler == true) writeHtml+= photoHtml.friedler + photoSep;
	if(photoFlags.rare == true) writeHtml+= photoHtml.rare + photoSep;
	if(photoFlags.steinberg == true) writeHtml+= photoHtml.steinberg + photoSep;
	if(photoFlags.rohlf == true) writeHtml+= photoHtml.rohlf + photoSep;
	if(photoFlags.look == true) writeHtml+= photoHtml.look + photoSep;
	if(photoFlags.schellhammer == true) writeHtml+= photoHtml.schellhammer + photoSep;
	if(photoFlags.grant == true) writeHtml+= photoHtml.grant + photoSep;
	if(photoFlags.shupe == true) writeHtml+= photoHtml.shupe + photoSep;
	if(photoFlags.blake == true) writeHtml+= photoHtml.blake + photoSep;
	if(photoFlags.stanmar == true) writeHtml+= photoHtml.stanmar + photoSep;
	if(photoFlags.rellas == true) writeHtml+= photoHtml.rellas + photoSep;
	if(photoFlags.conklin == true) writeHtml+= photoHtml.conklin + photoSep;
	if(photoFlags.foley == true) writeHtml+= photoHtml.foley + photoSep;
	
	if(writeHtml.indexOf(photoSep) != -1) {
		writeHtml = writeHtml.substring(0, writeHtml.length - photoSep.length);
		//alert(writeHtml);
		document.writeln(writeHtml);
	}
}
//-->
