

				//	Track our page info:
				var pageSizefe4757a545fd445cb659bcdcc6a5a420 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagefe4757a545fd445cb659bcdcc6a5a420(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabledfe4757a545fd445cb659bcdcc6a5a420)
					{
						pageSize = imgsfe4757a545fd445cb659bcdcc6a5a420.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizefe4757a545fd445cb659bcdcc6a5a420;
					sliceEnd = sliceStart + pageSizefe4757a545fd445cb659bcdcc6a5a420;
				
					//	Slice the array:
					tempArr = imgsfe4757a545fd445cb659bcdcc6a5a420.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(badgeLayoutfe4757a545fd445cb659bcdcc6a5a420 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabledfe4757a545fd445cb659bcdcc6a5a420)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagefe4757a545fd445cb659bcdcc6a5a420(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgsfe4757a545fd445cb659bcdcc6a5a420.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagefe4757a545fd445cb659bcdcc6a5a420(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapperfe4757a545fd445cb659bcdcc6a5a420');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgsfe4757a545fd445cb659bcdcc6a5a420 = new Array();

				
					//	The title:
					var photowebTitlefe4757a545fd445cb659bcdcc6a5a420;
					photowebTitlefe4757a545fd445cb659bcdcc6a5a420 = 'Singapore tour';
					
					var boolDisplayTitlefe4757a545fd445cb659bcdcc6a5a420;
					boolDisplayTitlefe4757a545fd445cb659bcdcc6a5a420 = true;
					
					var badgeLayoutfe4757a545fd445cb659bcdcc6a5a420;
					badgeLayoutfe4757a545fd445cb659bcdcc6a5a420 = 'Vertical';
					
					var pagingEnabledfe4757a545fd445cb659bcdcc6a5a420;
					pagingEnabledfe4757a545fd445cb659bcdcc6a5a420 = false;
						
					//	Add items to the array:
					
						imgsfe4757a545fd445cb659bcdcc6a5a420.push(new photoWebImage('//app.onlinephotofiler.com/Images/A_0/3/7/2/122730/1014458144164dbe8d19e9431708cac7.Thumbnail.jpg', 'http://photos.peaceofmindyogiccenter.org/GalleryThumbnails.aspx?gallery=317475&page=1&mid=10454169&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#;width: 150px;'>");

				document.write("<div id='titleWrapperfe4757a545fd445cb659bcdcc6a5a420' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapperfe4757a545fd445cb659bcdcc6a5a420' style='margin:auto;'></div>");
				

			    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:
				displayPagefe4757a545fd445cb659bcdcc6a5a420(0);

				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitlefe4757a545fd445cb659bcdcc6a5a420)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapperfe4757a545fd445cb659bcdcc6a5a420');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitlefe4757a545fd445cb659bcdcc6a5a420 + "</strong>";
				}
				
