

				//	Track our page info:
				var pageSize7d814b58cc344061a2506f8033f1a7a1 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage7d814b58cc344061a2506f8033f1a7a1(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled7d814b58cc344061a2506f8033f1a7a1)
					{
						pageSize = imgs7d814b58cc344061a2506f8033f1a7a1.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize7d814b58cc344061a2506f8033f1a7a1;
					sliceEnd = sliceStart + pageSize7d814b58cc344061a2506f8033f1a7a1;
				
					//	Slice the array:
					tempArr = imgs7d814b58cc344061a2506f8033f1a7a1.slice(sliceStart, sliceEnd);
					
					//	Rip through the array slice:
					for (i=0;i<tempArr.length;i++)
					{
						txtToWrite = txtToWrite + "<a href='" + tempArr[i].imgLink + "' target='_blank'><img src='" + tempArr[i].imgSrc + "' border=0></a>";
						if(badgeLayout7d814b58cc344061a2506f8033f1a7a1 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled7d814b58cc344061a2506f8033f1a7a1)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage7d814b58cc344061a2506f8033f1a7a1(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs7d814b58cc344061a2506f8033f1a7a1.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage7d814b58cc344061a2506f8033f1a7a1(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper7d814b58cc344061a2506f8033f1a7a1');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs7d814b58cc344061a2506f8033f1a7a1 = new Array();

				
					//	The title:
					var photowebTitle7d814b58cc344061a2506f8033f1a7a1;
					photowebTitle7d814b58cc344061a2506f8033f1a7a1 = 'GEMS Conference \x2709';
					
					var boolDisplayTitle7d814b58cc344061a2506f8033f1a7a1;
					boolDisplayTitle7d814b58cc344061a2506f8033f1a7a1 = true;
					
					var badgeLayout7d814b58cc344061a2506f8033f1a7a1;
					badgeLayout7d814b58cc344061a2506f8033f1a7a1 = 'Vertical';
					
					var pagingEnabled7d814b58cc344061a2506f8033f1a7a1;
					pagingEnabled7d814b58cc344061a2506f8033f1a7a1 = false;
						
					//	Add items to the array:
					
						imgs7d814b58cc344061a2506f8033f1a7a1.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_2/7/1/6/46172/DSCN1956_3b942.Thumbnail.jpg', 'http://PhotoGallery.clearwaterdst.org/GallerySlideshow.aspx?gallery=177537&page=1&mid=5970311&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#990000;width: 150px;'>");

				document.write("<div id='titleWrapper7d814b58cc344061a2506f8033f1a7a1' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper7d814b58cc344061a2506f8033f1a7a1' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle7d814b58cc344061a2506f8033f1a7a1)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper7d814b58cc344061a2506f8033f1a7a1');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle7d814b58cc344061a2506f8033f1a7a1 + "</strong>";
				}
				

			    document.write("<div style='margin:10px auto 10px auto;text-align:center;'><a href='https://www.godaddy.com/gdshop/photo/landing.asp?isc=OPFpowby' title='Learn more about online photo hosting' target='_blank'>Online Photo Hosting</a></div>");

			    

				document.write("</div>");

				//	Display images from the first page:
				displayPage7d814b58cc344061a2506f8033f1a7a1(0);

				