<!--

			var O0 = document.getElementById("I0");
			var O1 = document.getElementById("I1");
			var O2 = document.getElementById("I2");
			var O3 = document.getElementById("I3");
			var O4 = document.getElementById("I4");
			var O5 = document.getElementById("I5");
			var currentFile = "1";
			
			var Image0 = "<a href='javascript:openBigWindow(\"" + File1 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File1 + "\" border=\"0\" width=\""+width1+"\" height=\""+height1+"\"></a>";
			//var Image0 = "<img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File1 + "\" border=\"0\" width=\""+width1+"\" height=\""+height1+"\" style='border-color: #efefef; border-width: 2px;'>";
			
			if (File2 != "")
			{
				var Image1 = "<a href='javascript:openBigWindow(\"" + File1 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File1 + "\" border=\"0\" width=\""+width1+"\" height=\""+height1+"\" style='border-color: #efefef; border-width: 2px;'></a>";
				if (File1.length > 2) var Image1S = "<img alt=\"" + altImage + "\" src=\"/upload/small/" + File1 + "\" border=\"0\" width=\""+thumbwidth1+"\" height=\""+thumbheight1+"\" style='border-color: #efefef; border-width: 2px;'>";
				else var Image1S = "";
			}
			else
			{
				var Image1S = "No Additional Photos";
			}
			
			var Image2 = "<a href='javascript:openBigWindow(\"" + File2 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File2 + "\" border=\"0\" width=\""+width2+"\" height=\""+height2+"\" style='border-color: #efefef; border-width: 2px;'></a>";
			if (File2.length > 2) var Image2S = "<img alt=\"" + altImage + "\" src=\"/upload/small/" + File2 + "\" border=\"0\" width=\""+thumbwidth2+"\" height=\""+thumbheight2+"\" style='border-color: #efefef; border-width: 2px;'>";
			else var Image2S = "";
			
			var Image3 = "<a href='javascript:openBigWindow(\"" + File3 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File3 + "\" border=\"0\" width=\""+width3+"\" height=\""+height3+"\" style='border-color: #efefef; border-width: 2px;'></a>";
			if (File3.length > 2) var Image3S = "<img alt=\"" + altImage + "\" src=\"/upload/small/" + File3 + "\" border=\"0\" width=\""+thumbwidth3+"\" height=\""+thumbheight3+"\" style='border-color: #efefef; border-width: 2px;'>";
			else var Image3S = "";

			var Image4 = "<a href='javascript:openBigWindow(\"" + File4 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File4 + "\" border=\"0\" width=\""+width4+"\" height=\""+height4+"\" style='border-color: #efefef; border-width: 2px;'></a>";
			if (File4.length > 2) var Image4S = "<img alt=\"" + altImage + "\" src=\"/upload/small/" + File4 + "\" border=\"0\" width=\""+thumbwidth4+"\" height=\""+thumbheight4+"\" style='border-color: #efefef; border-width: 2px;'>";
			else var Image4S = "";

			var Image5 = "<a href='javascript:openBigWindow(\"" + File5 + "\")'><img alt=\"" + altImage + "\" src=\"/upload/Vlarge/" + File5 + "\" border=\"0\" width=\""+width5+"\" height=\""+height5+"\" style='border-color: #efefef; border-width: 2px;'></a>";
			if (File5.length > 2) var Image5S = "<img alt=\"" + altImage + "\" src=\"/upload/small/" + File5 + "\" border=\"0\" width=\""+thumbwidth5+"\" height=\""+thumbheight5+"\" style='border-color: #efefef; border-width: 2px;'>";
			else var Image5S = "";
			
			O0.style.visibility = "visible";
			O0.innerHTML = Image0;
						

			if (File2 != "")
			{
			O1.style.visibility = "visible";
			O1.innerHTML = "<a href='javascript:changeI1()'>" + Image1S + "</a>";
			}
						
			O2.style.visibility = "visible";
			O2.innerHTML = "<a href='javascript:changeI2()'>" + Image2S + "</a>";
			
			O3.style.visibility = "visible";
			O3.innerHTML = "<a href='javascript:changeI3()'>" + Image3S + "</a>";
					
			O4.style.visibility = "visible";
			O4.innerHTML = "<a href='javascript:changeI4()'>" + Image4S + "</a>";
			
			O5.style.visibility = "visible";
			O5.innerHTML = "<a href='javascript:changeI5()'>" + Image5S + "</a>";
						

			function changeI1(){
			
				O0.innerHTML = Image1;
				currentFile = "1";

			}
			
			function changeI2(){
			
				O0.innerHTML = Image2;
				currentFile = "2";

			}

			function changeI3(){
			
				O0.innerHTML = Image3;
				currentFile = "3";

			}


			function changeI4(){
			
				O0.innerHTML = Image4;
				currentFile = "4";

			}			

		
			function changeI5(){
			
				O0.innerHTML = Image5;
				currentFile = "5";

			}

			function openBigWindow(file)
			{
				var newwindow = window.open('/pages/image.aspx?file='+currentFile+'&productid='+productID,'','height=600,width=1000');
		  
				if (!newwindow)
				{
					alert("Sorry, this window failed to open, make sure you haven't a pop-up blocker installed, and your Javascript settings are set correctly.");
				}
		 
				newwindow.document.close();
			}	
-->