function clickedImage(obj, q)
	{
		var fullImagePath = "tpigallery\\images\\" + (obj)
		document.fullPicture.src = fullImagePath;
		
		// Automatically Select in the Combo Box
		document.myform.lstArray.selectedIndex = (q - 1)
		clickopacity();
	}
	
	function nextImage()
	{
		z = document.myform.lstArray.options.length;
		if (document.myform.lstArray.selectedIndex + 1 == z)
		{
			document.myform.lstArray.selectedIndex = 0;
		}
		else
		{
			document.myform.lstArray.selectedIndex = document.myform.lstArray.selectedIndex + 1;
		}
		
		var fullImagePath = "tpigallery\\images\\" + (document.myform.lstArray.options[myform.lstArray.selectedIndex].text)
		document.fullPicture.src = fullImagePath;
		clickopacity();
	}
	
	function prevImage()
	{
		z = document.myform.lstArray.options.length;
		if (document.myform.lstArray.selectedIndex == 0)
		{
			document.myform.lstArray.selectedIndex = z - 1;
		}
		else
		{
			document.myform.lstArray.selectedIndex = document.myform.lstArray.selectedIndex - 1;
		}
		
		var fullImagePath = "tpigallery\\images\\" + (document.myform.lstArray.options[myform.lstArray.selectedIndex].text)
		document.fullPicture.src = fullImagePath;
		clickopacity();
	}