

				//	Track our page info:
				var pageSize193c0321f3a747e2b6e956edcb5a8797 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage193c0321f3a747e2b6e956edcb5a8797(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled193c0321f3a747e2b6e956edcb5a8797)
					{
						pageSize = imgs193c0321f3a747e2b6e956edcb5a8797.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize193c0321f3a747e2b6e956edcb5a8797;
					sliceEnd = sliceStart + pageSize193c0321f3a747e2b6e956edcb5a8797;
				
					//	Slice the array:
					tempArr = imgs193c0321f3a747e2b6e956edcb5a8797.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(badgeLayout193c0321f3a747e2b6e956edcb5a8797 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled193c0321f3a747e2b6e956edcb5a8797)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage193c0321f3a747e2b6e956edcb5a8797(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs193c0321f3a747e2b6e956edcb5a8797.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage193c0321f3a747e2b6e956edcb5a8797(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper193c0321f3a747e2b6e956edcb5a8797');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs193c0321f3a747e2b6e956edcb5a8797 = new Array();

				
					//	The title:
					var photowebTitle193c0321f3a747e2b6e956edcb5a8797;
					photowebTitle193c0321f3a747e2b6e956edcb5a8797 = 'bragging board';
					
					var boolDisplayTitle193c0321f3a747e2b6e956edcb5a8797;
					boolDisplayTitle193c0321f3a747e2b6e956edcb5a8797 = true;
					
					var badgeLayout193c0321f3a747e2b6e956edcb5a8797;
					badgeLayout193c0321f3a747e2b6e956edcb5a8797 = 'Vertical';
					
					var pagingEnabled193c0321f3a747e2b6e956edcb5a8797;
					pagingEnabled193c0321f3a747e2b6e956edcb5a8797 = false;
						
					//	Add items to the array:
					
						imgs193c0321f3a747e2b6e956edcb5a8797.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_4/9/2/8/8294/kent_bass_cropped.Thumbnail.jpg', 'http://braggingboard.thehookset.com/GalleryFilmstrip.aspx?gallery=20806&page=1&mid=612161&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#8F7B59;width: 150px;'>");

				document.write("<div id='titleWrapper193c0321f3a747e2b6e956edcb5a8797' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper193c0321f3a747e2b6e956edcb5a8797' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle193c0321f3a747e2b6e956edcb5a8797)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper193c0321f3a747e2b6e956edcb5a8797');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle193c0321f3a747e2b6e956edcb5a8797 + "</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:
				displayPage193c0321f3a747e2b6e956edcb5a8797(0);

				