// XL GALLERY FUNCTIONS - James Bligh - XLR8cs.com

	function open_trainpage()
		{
		window.open
		("http://www.wattylerminiaturerailway.com")
		}

// Build Fields Function

	function showfields()
		{
		var vAmount = document.getElementById("CHILD_AMOUNT").value;
		
		var vCounter = 1;
		var vFields = '<table class="tableEvents"><tr><th>Childs Surname</th><th>Childs Forename</th><th>Age</th><th>Parent or Guardians Name</th><th>Phone Number</th></tr>';
		
		while (vCounter <= vAmount)
			{
			vFields = vFields + '<tr><td><input type="text" size="10" name="Surname'+ vCounter +'"></td><td><input type="text" size="10" name="Forename'+ vCounter +'"/></td><td><input type="text" size="2" name="Age'+ vCounter +'"/></td><td><input type="text" name="Guardian'+ vCounter +'" size="20" /></td><td><input type="text" size="12" name="Phone Number'+ vCounter +'"/></td></tr>';
			vCounter = vCounter + 1;
			}

		vFields = vFields + '</table>';	
		
		document.getElementById("DYNAMIC_TABLE").innerHTML = vFields;
		}


//Show image Function

	function showPic(vImage,vName,vInfo,vPrice)
		{
		document.getElementById("divViewingPane").style.visibility = 'visible';
		document.getElementById("divViewingPane").innerHTML = ('</p><center><img src="photos/'+vImage+'.jpg" height="50%" /></p><a href="#" onclick="hidePic()"><h1>Back</h1></a><b>' + vName + '<br/>' + vInfo + '<br/>' + vPrice + '</b></center>');
		}
		
	function hidePic()
		{
		document.getElementById("divViewingPane").style.visibility = 'hidden';
		document.getElementById("divViewingPane").innerHTML = '';
		}
		


