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