<!--
function go_URL(num, ReturnUrl){
		if(ReturnUrl) ReturnUrl = encodeURIComponent(ReturnUrl);
		else ReturnUrl = "/";


		// 홈 
		if (num=="10"){
			location.href="../";//홈
		}
		else if (num=="20"){
			location.href="#";//
		}
		else if (num=="30"){
			location.href="#";//
		}


		//1. event

		else if (num=="100"){
			location.href="../yg_board.php?BID=event&GID=root";//
		}
		else if (num=="110"){
			location.href="../shopping/cos_product.asp";//제품상세설명
		}
		else if (num=="120"){
			location.href="../shopping/cos_review.asp";//상품댓글
		}
		else if (num=="130"){
			location.href="../shopping/cos_receipt.asp";//입금.교환.반품안내
		}
		
		
		//2. goods

		else if (num=="200"){
			location.href="../yg_mart.php?code=000002";//
		}
		else if (num=="210"){
			location.href="../product/...";//
		}
		else if (num=="220"){
			location.href="../product/...";//
		}
		else if (num=="230"){
			location.href="../product/...";//
		}


		//3. album

		else if (num=="300"){
			location.href="../yg_mart.php?code=000001";//
		}
		else if (num=="310"){
			location.href="../customer/...";//
		}
		else if (num=="311"){
			location.href="../customer/...";//
		}
		else if (num=="312"){
			location.href="../customer/...";//
		}
		else if (num=="320"){
			location.href="../customer/...";//
		}
		else if (num=="330"){
			location.href="../customer/...";//
		}
		else if (num=="340"){
			location.href="../customer/...";//
		}
		else if (num=="350"){
			location.href="../customer/...";//
		}
		
		
		//4. 마이페이지
		
		else if (num=="400"){
			location.href="../mypage/...";
		}
		else if (num=="410"){
			location.href="./yg_member.php?query=mypage";//개인정보변경
		}
		else if (num=="420"){
			location.href="../mypage/...";//배송조회
		}
		else if (num=="430"){
			location.href="../mypage/...";//적립금
		}
		else if (num=="440"){
			location.href="../mypage/...";//오늘본상품
		}
		else if (num=="450"){
			location.href="../mypage/...";//내가찜한상품
		}
		else if (num=="460"){
			location.href="../mypage/...";//나의상품평
		}
		else if (num=="470"){
			location.href="../mypage/...";//1:1문의
		}
		else if (num=="480"){
			location.href="../mypage/...";//출석부
		}
		else if (num=="490"){
			location.href="../mypage/...";//회원탈퇴
		}
		
		
		//5. member
		
		else if (num=="500"){
			location.href="./yg_member.php?query=login&ReturnUrl=" + ReturnUrl;//로그인;
		}
		else if (num=="510"){
			location.href="./yg_member.php?query=join";//회원가입
		}


		//6. 고객센터
		
		else if (num=="600"){
			location.href="../customer/...";//
		}
		else if (num=="610"){
			location.href="../customer/...";//공지사항
		}
		else if (num=="620"){
			location.href="../customer/...";//자주하는질문
		}
		else if (num=="630"){
			location.href="../customer/...";//입금확인
		}
		else if (num=="640"){
			location.href="../customer/...";//문의게시판
		}
		else if (num=="650"){
			location.href="../customer/...";//전화상담
		}
		else if (num=="660"){
			location.href="../customer/...";//배송문의
		}
		else if (num=="670"){
			location.href="../customer/...";//교환/환불/맞교환
		}
		
		
		//7. shopping bag
		
		else if (num=="700"){
			location.href="../shopping/...";//
		}
		else if (num=="710"){
			location.href="./yg_bag.php";//장바구니
		}
		
		
}

//-->