

				//	Track our page info:
				var pageSize3dceb71c537b4bed8db829c8612c4a8a = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage3dceb71c537b4bed8db829c8612c4a8a(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled3dceb71c537b4bed8db829c8612c4a8a)
					{
						pageSize = imgs3dceb71c537b4bed8db829c8612c4a8a.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize3dceb71c537b4bed8db829c8612c4a8a;
					sliceEnd = sliceStart + pageSize3dceb71c537b4bed8db829c8612c4a8a;
				
					//	Slice the array:
					tempArr = imgs3dceb71c537b4bed8db829c8612c4a8a.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(badgeLayout3dceb71c537b4bed8db829c8612c4a8a == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled3dceb71c537b4bed8db829c8612c4a8a)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage3dceb71c537b4bed8db829c8612c4a8a(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs3dceb71c537b4bed8db829c8612c4a8a.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage3dceb71c537b4bed8db829c8612c4a8a(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper3dceb71c537b4bed8db829c8612c4a8a');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs3dceb71c537b4bed8db829c8612c4a8a = new Array();

				
					//	The title:
					var photowebTitle3dceb71c537b4bed8db829c8612c4a8a;
					photowebTitle3dceb71c537b4bed8db829c8612c4a8a = 'Dustin and Feryn';
					
					var boolDisplayTitle3dceb71c537b4bed8db829c8612c4a8a;
					boolDisplayTitle3dceb71c537b4bed8db829c8612c4a8a = true;
					
					var badgeLayout3dceb71c537b4bed8db829c8612c4a8a;
					badgeLayout3dceb71c537b4bed8db829c8612c4a8a = 'Vertical';
					
					var pagingEnabled3dceb71c537b4bed8db829c8612c4a8a;
					pagingEnabled3dceb71c537b4bed8db829c8612c4a8a = false;
						
					//	Add items to the array:
					
						imgs3dceb71c537b4bed8db829c8612c4a8a.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_8/2/0/2/62028/DSC_0068_91dfd.Large.jpg', 'http://photos.reflectionsphotography1.com/GallerySlideshow.aspx?gallery=206126&page=1&mid=6878045&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#;width: 500px;'>");

				document.write("<div id='titleWrapper3dceb71c537b4bed8db829c8612c4a8a' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper3dceb71c537b4bed8db829c8612c4a8a' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle3dceb71c537b4bed8db829c8612c4a8a)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper3dceb71c537b4bed8db829c8612c4a8a');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle3dceb71c537b4bed8db829c8612c4a8a + "</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:
				displayPage3dceb71c537b4bed8db829c8612c4a8a(0);

				