	//********************************************************
	//### TOP 플래시 메뉴 클릭시 URL처리
	//### 사용 예)   javascript:goURL(0);
	//********************************************************
	function goURL(num)
	{
		no = eval(num);
		var cur_url = location.href;
		var http_url = "";

		switch(no)
		{
			//메인페이지
			case 0 : top.location.href = http_url + "/";
				break;

			//회사소개
			case 1 : top.location.href = http_url + "/company/company_01.asp";
				break;

			//인력경매란?
			case 2 : top.location.href = http_url + "/manpower/manpower_01.asp";
				break;

			//커뮤니티
			case 3 : top.location.href = http_url + "/community/guide/list.asp";
				break;

			//고객센터
			case 4 : top.location.href = http_url + "/customer/notice/list.asp";
				break;

			//로그인
			case 5 : top.location.href = http_url + "/member/login_form.asp?return_url=" + encodeURIComponent(location.href);
				break;

			//회원가입
			case 6 : top.location.href = http_url + "/member/join_form.asp";
				break;

			//로그아웃
			case 7 : top.location.href = http_url + "/member/logout_proc.asp";
				break;

			//마이페이지
			case 8 : top.location.href = http_url + "/mypage/join_modify_form.asp";
				break;

			//사이트맵
			case 9 : top.location.href = http_url + "/etc/sitemap.asp";
				break;



			//업.직종별
			case 11 : top.location.href = http_url + "/auction/business.asp";
				break;

			//지역별
			case 12 : top.location.href = http_url + "/auction/local.asp";
				break;

			//일용직
			case 13 : top.location.href = http_url + "/auction/daily.asp";
				break;

			//아르바이트
			case 14 : top.location.href = http_url + "/auction/arbeit.asp";
				break;

			//프리랜서
			case 15 : top.location.href = http_url + "/auction/freelancer.asp";
				break;



			//ILauction :: 회사소개
			case 101 : top.location.href = http_url + "/company/company_01.asp";
				break;

			//ILauction :: 하는일
			case 102 : top.location.href = http_url + "/company/company_02.asp";
				break;

			//ILauction :: 비전
			case 103 : top.location.href = http_url + "/company/company_03.asp";
				break;



			//인력경매란? :: 인력경매란?
			case 201 : top.location.href = http_url + "/manpower/manpower_01.asp";
				break;

			//인력경매란? :: 자격조건
			case 202 : top.location.href = http_url + "/manpower/manpower_02.asp";
				break;

			//인력경매란? :: 인력경매의 장점
			case 203 : top.location.href = http_url + "/manpower/manpower_03.asp";
				break;



			//커뮤니티 :: 취업가이드
			case 301 : top.location.href = http_url + "/community/guide/list.asp";
				break;

			//커뮤니티 :: 취업노하우
			case 302 : top.location.href = http_url + "/community/knowhow/list.asp";
				break;

			//커뮤니티 :: 자유게시판
			case 303 : top.location.href = http_url + "/community/freeboard/list.asp";
				break;

			//커뮤니티 :: 포토갤러리
			case 304 : top.location.href = http_url + "/community/photo/list.asp";
				break;



			//고객센터 :: 공지사항
			case 401 : top.location.href = http_url + "/customer/notice/list.asp";
				break;

			//고객센터 :: FAQ
			case 402 : top.location.href = http_url + "/customer/faq/list.asp";
				break;

			//고객센터 :: 이용가이드
			case 403 : top.location.href = http_url + "/customer/guide/list.asp";
				break;

			//고객센터 :: 문의하기
			case 404 : top.location.href = http_url + "/customer/qna/list.asp";
				break;

			//고객센터 :: 자료실
			case 405 : top.location.href = http_url + "/customer/pds/list.asp";
				break;



			//Member :: 로그인
			case 501 : top.location.href = http_url + "/member/login_form.asp";
				break;

			//Member :: 회원가입
			case 502 : top.location.href = http_url + "/member/join_form.asp";
				break;

			//Member :: 아이디/비밀번호 찾기
			case 503 : top.location.href = http_url + "/member/idpw_search_form.asp";
				break;



			//마이페이지 :: 경매 신청하기
			case 601 : top.location.href = http_url + "/mypage/auction_write_form.asp";
				break;

			//마이페이지 :: 경매 신청
			case 602 : top.location.href = http_url + "/mypage/auction_list.asp";
				break;

			//마이페이지 :: 경매 입찰
			case 603 : top.location.href = http_url + "/mypage/tender_list.asp";
				break;

			//마이페이지 :: 기업/개인 배너광고
			case 604 : top.location.href = http_url + "/mypage/banner_apply.asp";
				break;

			//마이페이지 :: 나의포인트
			case 605 : top.location.href = http_url + "/mypage/mypoint.asp";
				break;

			//마이페이지 :: 회원정보수정
			case 606 : top.location.href = http_url + "/mypage/join_modify_form.asp";
				break;

			//마이페이지 :: 회원탈퇴
			case 607 : top.location.href = http_url + "/mypage/secession_form.asp";
				break;



			//기타메뉴 :: 사이트맵
			case 701 : top.location.href = http_url + "/etc/sitemap.asp";
				break;

			//기타메뉴 :: 개인정보보호정책
			case 702 : top.location.href = http_url + "/etc/privacy.asp";
				break;

			//기타메뉴 :: 이용정책
			case 703 : top.location.href = http_url + "/etc/contract.asp";
				break;



			//예외
			default : top.location.href = http_url + "/";
				break;
		}
	}

