	
			function doChange(a)
			{
				var sArray =	a.value.split("|");
				document.applets[0].newPano(sArray[1]);
				select_text('change',sArray[0],sArray[2]);
			}
			function select_text(panoStatus,selectVal,textVal)
			{
				if(document.getElementById("sel_text"))
				{
					var val	=	document.getElementById("sel_text");
					var panoVal=	val.options[val.selectedIndex].value;
					for(i=0;i<val.options.length;i++)
					{
						if(panoStatus=="show")
						{
							var myArray	=	val.options[i].value.split("|");
							if(myArray[0]	==	selectVal)
								val.options[i].selected=true;
						}
						else
						{
							if(val.options[i].value	==	selectVal)
								val.options[i].selected=true;
						}
					}
					document.getElementById("txt_area").value = textVal;
				}
			}
			function doShowImage(a)
			{
				var dArray =	a.split("|");
				document.applets[0].newPano(dArray[1]);
				select_text('show',dArray[0],dArray[2]);
			}
