	var overMouse=true;
	var loop = 1; // 초기 팝업이미지 번호
	var popupToggle = 0;
	

		function movePhoto(indexNum){
			var photoLength = photoArray.length;			

			if(indexNum == 1000) {
				alert('이전 사진이 없습니다.');
				return;
			} else if (indexNum == 2000) {
				alert('다음 사진이 없습니다.');
				return;
			} else {
				for(var i=0; i<photoLength; i++) {				
					if(i == indexNum)	{						
						document.getElementById("china_photosss_"+i).style.display = "block";
					} else {
						document.getElementById("china_photosss_"+i).style.display = "none";
					}
				}	
			}		
		}


		function Open_spop(url,Width,Height) {
			  window.open("http://222.234.3.78/"+url+"/", "", "toolbar=no,resizable=no,scrollbars=no,width=" + Width + ",height=" + Height + ",left=0,top=0");
		}

