

				//	Track our page info:
				var pageSize038d0b7b660347c38da81980205d558a = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage038d0b7b660347c38da81980205d558a(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled038d0b7b660347c38da81980205d558a)
					{
						pageSize = imgs038d0b7b660347c38da81980205d558a.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize038d0b7b660347c38da81980205d558a;
					sliceEnd = sliceStart + pageSize038d0b7b660347c38da81980205d558a;
				
					//	Slice the array:
					tempArr = imgs038d0b7b660347c38da81980205d558a.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(badgeLayout038d0b7b660347c38da81980205d558a == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled038d0b7b660347c38da81980205d558a)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage038d0b7b660347c38da81980205d558a(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs038d0b7b660347c38da81980205d558a.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage038d0b7b660347c38da81980205d558a(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper038d0b7b660347c38da81980205d558a');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs038d0b7b660347c38da81980205d558a = new Array();

				
					//	The title:
					var photowebTitle038d0b7b660347c38da81980205d558a;
					photowebTitle038d0b7b660347c38da81980205d558a = 'Course Construction';
					
					var boolDisplayTitle038d0b7b660347c38da81980205d558a;
					boolDisplayTitle038d0b7b660347c38da81980205d558a = true;
					
					var badgeLayout038d0b7b660347c38da81980205d558a;
					badgeLayout038d0b7b660347c38da81980205d558a = 'Vertical';
					
					var pagingEnabled038d0b7b660347c38da81980205d558a;
					pagingEnabled038d0b7b660347c38da81980205d558a = false;
						
					//	Add items to the array:
					
						imgs038d0b7b660347c38da81980205d558a.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_4/3/7/2/32734/Turf_Tear_Out_005_ec03d.Large.jpg', 'http://photos.kulmcc.com/GalleryThumbnails.aspx?gallery=95175&page=1&mid=3101296&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#0E7F09;width: 500px;'>");

				document.write("<div id='titleWrapper038d0b7b660347c38da81980205d558a' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper038d0b7b660347c38da81980205d558a' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle038d0b7b660347c38da81980205d558a)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper038d0b7b660347c38da81980205d558a');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle038d0b7b660347c38da81980205d558a + "</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:
				displayPage038d0b7b660347c38da81980205d558a(0);

				