

				//	Track our page info:
				var pageSize577e286ed5074b04aee8d72d905bafad = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage577e286ed5074b04aee8d72d905bafad(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled577e286ed5074b04aee8d72d905bafad)
					{
						pageSize = imgs577e286ed5074b04aee8d72d905bafad.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize577e286ed5074b04aee8d72d905bafad;
					sliceEnd = sliceStart + pageSize577e286ed5074b04aee8d72d905bafad;
				
					//	Slice the array:
					tempArr = imgs577e286ed5074b04aee8d72d905bafad.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(badgeLayout577e286ed5074b04aee8d72d905bafad == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled577e286ed5074b04aee8d72d905bafad)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage577e286ed5074b04aee8d72d905bafad(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs577e286ed5074b04aee8d72d905bafad.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage577e286ed5074b04aee8d72d905bafad(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper577e286ed5074b04aee8d72d905bafad');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs577e286ed5074b04aee8d72d905bafad = new Array();

				
					//	The title:
					var photowebTitle577e286ed5074b04aee8d72d905bafad;
					photowebTitle577e286ed5074b04aee8d72d905bafad = 'G.E.M.S. \x2708 - \x2709';
					
					var boolDisplayTitle577e286ed5074b04aee8d72d905bafad;
					boolDisplayTitle577e286ed5074b04aee8d72d905bafad = true;
					
					var badgeLayout577e286ed5074b04aee8d72d905bafad;
					badgeLayout577e286ed5074b04aee8d72d905bafad = 'Vertical';
					
					var pagingEnabled577e286ed5074b04aee8d72d905bafad;
					pagingEnabled577e286ed5074b04aee8d72d905bafad = false;
						
					//	Add items to the array:
					
						imgs577e286ed5074b04aee8d72d905bafad.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_2/7/1/6/46172/delta119_1ffdf.Thumbnail.jpg', 'http://PhotoGallery.clearwaterdst.org/GalleryThumbnails.aspx?gallery=135299&page=1&mid=4583783&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#990000;width: 150px;'>");

				document.write("<div id='titleWrapper577e286ed5074b04aee8d72d905bafad' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper577e286ed5074b04aee8d72d905bafad' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle577e286ed5074b04aee8d72d905bafad)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper577e286ed5074b04aee8d72d905bafad');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle577e286ed5074b04aee8d72d905bafad + "</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:
				displayPage577e286ed5074b04aee8d72d905bafad(0);

				