		var imageNames = new Array(9)
		imageNames[0] = "churchmap.gif";
		imageNames[1] = "church1.jpg";
		imageNames[2] = "church2.jpg";
		imageNames[3] = "church3.jpg";
		imageNames[4] = "church4.jpg";
		imageNames[5] = "samsclub.jpg";
		imageNames[6] = "faithgroup.jpg";
		imageNames[7] = "baptism.jpg";
		imageNames[8] = "cornerstones.jpg";

		var imageWidth = new Array(9)
		imageWidth[0]="500"
		imageWidth[1]="500"
		imageWidth[2]="400"
		imageWidth[3]="500"
		imageWidth[4]="450"
		imageWidth[5]="600"
		imageWidth[6]="650"
		imageWidth[7]="600"
		imageWidth[8]="650"

		var imageHeight = new Array(9)
		imageHeight[0]="300"
		imageHeight[1]="300"
		imageHeight[2]="600"
		imageHeight[3]="300"
		imageHeight[4]="300"
		imageHeight[5]="400"
		imageHeight[6]="450"
		imageHeight[7]="400"
		imageHeight[8]="450"

		var imageCaption = new Array(9)
		imageCaption[0] = "churchmap.gif";
		imageCaption[1] = "Last Day at Gage School Sunday April 28, 2002";
		imageCaption[2] = "Pastor Noonan and Family At the New Property";
		imageCaption[3] = "Our church family in front of our new building.";
		imageCaption[4] = "1st Service in the Building Wednesday May 2, 2002";
		imageCaption[5] = "A few of the people we have reached, \"The Sams Club\"."
		imageCaption[6] = "A group of teens from Faith Baptist Church in Milwaukee.";
		imageCaption[7] = "A baptismal service";
		imageCaption[8] = "The young ladies group \"Cornerstones\" singing."

		function picWin(iNum){
			//alert("Number : "+iNum+"\n"+imageNames[iNum]+"\n"+imageHeight[iNum]);
			openWin=window.open("", "newwin", "height="+imageHeight[iNum]+", width="+imageWidth[iNum]+",toolbar=no,scrollbars="+scroll+",menubar=no");
			openWin.document.write("");
			openWin.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><html><body>");
			openWin.document.write("<link rel=\"stylesheet\" href=\"xtra/main.css\"><title>Untitled</title></head>");
			openWin.document.write("<body><center><img src=\"images/"+imageNames[iNum]+"\">");
			openWin.document.write("<br>"+imageCaption[iNum]+"</center></body></html>");
		}
