//----------Grid Select-------------------------------------------------Common
		function Grid_Item_Over(iThis)
		{
			//gPreBgColor = iThis.style.backgroundColor
			//iThis.style.cursor='hand';
			iThis.style.backgroundColor='#FCEED2'; // #FFFF99 -> #FCEED2 -> #FF4200 -> #FFEFC7 -> #FCEED2
		}
		
		function Grid_Item_Out(iThis)
		{
			iThis.style.cursor='';
			if(iThis.id != 'selectedRow')
				iThis.style.backgroundColor = "";
		}

		function Grid_Table_Over(iThis)
		{
			//gPreBgColor = iThis.style.backgroundColor
			iThis.style.cursor='hand';
			iThis.style.backgroundColor='#0000FF'; // #FFFF99 -> #FCEED2 -> #FF4200 -> #FFEFC7 -> #FCEED2
		}
		
		function SelectRow()
		{
			// Maintain Selected Row
			if (document.getElementById("selectedRow") != null)
			{
				selectedRow.style.backgroundColor = '#FCEED2'; // FFFF99 // #FCEED2
			}
		}


		// 검색 중 임을 알리는 ProcessImg 표시
		function ShowProcessImg()
		{
			var imgTop = (document.body.clientHeight / 2) - 200;
			var imgLeft = (document.body.clientWidth / 2) - 200;
			
			//document.getElementById("divList").style.display = "none";
			
			document.all("divProcessImg").style.posTop = imgTop + document.body.scrollTop;
			document.all("divProcessImg").style.posLeft = imgLeft + document.body.scrollLeft;
			document.all("divProcessImg").style.display = "block";
		}	
		
		// 검색이 완료 된 경우 ProcessImg 감춤
		function HideProcessImg(target)
		{
			/*
			if(flagGraph < 0 && target == "Graph")
				return;
			if(flagGraph < 0)
				document.getElementById("divTable").style.display = "";
			else
				document.getElementById("divGraph").style.display = "";
			*/
			//document.getElementById("divList").style.display = "";
			document.getElementById("divProcessImg").style.display = "none";
		}

	function LogOut()
	{
		setCookie("cookie_id",''.value,0);
		setCookie("cookie_name",''.value,0);
		window.parent.location.href = "../index.html";
	}

	function setCookie(name, value, expires)
	{
		var todayDate = new Date();
		todayDate.setDate( todayDate.getDate() + expires );
		document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
	}

	function openCatalWindow(value1) {
		var strUrl = "exhi_catalog.htm?no="+value1+"&catano=0";
		open (strUrl,"catalog","left=50, top=50, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=808, height=420");
	}

	function openPhoto(value1) {
		var strUrl = "photo_view.htm?no="+value1;
		open (strUrl,"catalog","left=10, top=10, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1044, height=778");
	}
