

				//	Track our page info:
				var pageSizec776b839364a4e57806a56db936ec55b = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagec776b839364a4e57806a56db936ec55b(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabledc776b839364a4e57806a56db936ec55b)
					{
						pageSize = imgsc776b839364a4e57806a56db936ec55b.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizec776b839364a4e57806a56db936ec55b;
					sliceEnd = sliceStart + pageSizec776b839364a4e57806a56db936ec55b;
				
					//	Slice the array:
					tempArr = imgsc776b839364a4e57806a56db936ec55b.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(badgeLayoutc776b839364a4e57806a56db936ec55b == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabledc776b839364a4e57806a56db936ec55b)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagec776b839364a4e57806a56db936ec55b(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgsc776b839364a4e57806a56db936ec55b.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagec776b839364a4e57806a56db936ec55b(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapperc776b839364a4e57806a56db936ec55b');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgsc776b839364a4e57806a56db936ec55b = new Array();

				
					//	The title:
					var photowebTitlec776b839364a4e57806a56db936ec55b;
					photowebTitlec776b839364a4e57806a56db936ec55b = 'DOCNA_613';
					
					var boolDisplayTitlec776b839364a4e57806a56db936ec55b;
					boolDisplayTitlec776b839364a4e57806a56db936ec55b = true;
					
					var badgeLayoutc776b839364a4e57806a56db936ec55b;
					badgeLayoutc776b839364a4e57806a56db936ec55b = 'Vertical';
					
					var pagingEnabledc776b839364a4e57806a56db936ec55b;
					pagingEnabledc776b839364a4e57806a56db936ec55b = false;
						
					//	Add items to the array:
					
						imgsc776b839364a4e57806a56db936ec55b.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_5/7/5/6/56575/DOCNA6_13_472_108_web_6797b.Small.jpg', 'http://photos.hcookphotos.com/GalleryFilmstrip.aspx?gallery=215282&page=1&mid=7186889&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#;width: 110px;'>");

				document.write("<div id='titleWrapperc776b839364a4e57806a56db936ec55b' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapperc776b839364a4e57806a56db936ec55b' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitlec776b839364a4e57806a56db936ec55b)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapperc776b839364a4e57806a56db936ec55b');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitlec776b839364a4e57806a56db936ec55b + "</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:
				displayPagec776b839364a4e57806a56db936ec55b(0);

				