function page_view(url)
{
		var value_url = url;
		var true_url;
		
		if(value_url == "main")
		{
			true_url = "/index.html";
		}
		else if(value_url == "login")
		{
			true_url = "/html/login/login.jsp";
		}
		else if(value_url == "regist")
		{
			true_url = "/html/member/regist_pre.jsp";
		}
		else if(value_url == "logout")
		{
			true_url = "/main.jsp?logout=true";
		}
		else if(value_url == "myfolder")
		{
			true_url = "http://myfolder.onlinedesktop.co.kr:8080/";
		}
		else if(value_url == "myfolder_login")
		{
			true_url = "/html/login/login.jsp?top_flag=login&qpage=myfolder";
		}
		else if(value_url == "mypage")
		{
			true_url = "/html/mypage/user_storage.jsp?page_flag=mypage";
		}
		else if(value_url == "mypage_login")
		{
			true_url = "/html/login/login.jsp?top_flag=login&qpage=mypage";
		}
		else if(value_url == "sitemap")
		{
			true_url = "/html/etc/sitemap.jsp";
		}
		else if(value_url == "service")
		{
			true_url = "/html/service/info.jsp?page_flag=service";
		}
		else if(value_url == "download")
		{
			true_url = "/html/download/download.jsp?page_flag=download";
		}
		else if(value_url == "faq")
		{
			true_url = "/html/faq/faq.jsp?page_flag=3";
		}
		else if(value_url == "qna")
		{
			true_url = "/html/bulletin/qna/board.jsp?page_flag=qna";
		}
		else if(value_url == "board")
		{
			true_url = "/html/bulletin/board/board.jsp?page_flag=board";
		}
		else if(value_url == "use_new")
		{
			true_url = "/html/use_new/board.jsp";
		}
		else if(value_url == "company")
		{
			true_url = "/html/etc/company.jsp";
		}
		else if(value_url == "contract")
		{
			true_url = "/html/etc/contract.jsp";
		}
		else if(value_url == "privacy")
		{
			true_url = "/html/etc/privacy.jsp";
		}
		else if(value_url == "event")
		{
			true_url = "/html/event/event.jsp";
		}
		else if(value_url == "login_af_event")
		{
			true_url = "/html/login/login.jsp?af=event";
		}

   		window.location=true_url;
}
