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