

				//	Track our page info:
				var pageSizea21d302721be442b841e8c243a580491 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagea21d302721be442b841e8c243a580491(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnableda21d302721be442b841e8c243a580491)
					{
						pageSize = imgsa21d302721be442b841e8c243a580491.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizea21d302721be442b841e8c243a580491;
					sliceEnd = sliceStart + pageSizea21d302721be442b841e8c243a580491;
				
					//	Slice the array:
					tempArr = imgsa21d302721be442b841e8c243a580491.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(badgeLayouta21d302721be442b841e8c243a580491 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnableda21d302721be442b841e8c243a580491)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagea21d302721be442b841e8c243a580491(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgsa21d302721be442b841e8c243a580491.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagea21d302721be442b841e8c243a580491(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrappera21d302721be442b841e8c243a580491');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgsa21d302721be442b841e8c243a580491 = new Array();

				
					//	The title:
					var photowebTitlea21d302721be442b841e8c243a580491;
					photowebTitlea21d302721be442b841e8c243a580491 = 'Puppies Avaliable';
					
					var boolDisplayTitlea21d302721be442b841e8c243a580491;
					boolDisplayTitlea21d302721be442b841e8c243a580491 = false;
					
					var badgeLayouta21d302721be442b841e8c243a580491;
					badgeLayouta21d302721be442b841e8c243a580491 = 'Vertical';
					
					var pagingEnableda21d302721be442b841e8c243a580491;
					pagingEnableda21d302721be442b841e8c243a580491 = false;
						
					//	Add items to the array:
					
						imgsa21d302721be442b841e8c243a580491.push(new photoWebImage('http://app.onlinephotofiler.com/Img1/A_9/7/2/9/99279/87f6c38745c045e2912b34950675dd9e.Large.jpg', 'http://photos.texasbostonterriers.com/GalleryFilmstrip.aspx?gallery=261644&page=1&mid=12900060&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#FFFFCC;width: 500px;'>");

				document.write("<div id='titleWrappera21d302721be442b841e8c243a580491' style='margin:auto;'></div>");

				document.write("<div id='imgsWrappera21d302721be442b841e8c243a580491' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitlea21d302721be442b841e8c243a580491)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrappera21d302721be442b841e8c243a580491');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitlea21d302721be442b841e8c243a580491 + "</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:
				displayPagea21d302721be442b841e8c243a580491(0);

				