function setTop(num){	if(num == 0) {        // 로그인		window.open("/login.asp","_new","width=350px, height=230px;")	} else if (num == 1) {		// 회원가입		window.open("/join.asp","_join","width=635px, height=492px;")	} else if (num == 2) {		// 사이트맵		location.href='/sitemap.asp';	} else if (num == 3) {		// 로그아웃		location.href='/logout.asp';	} else if (num == 4) {		// 정보수정		window.open("/join.asp?mode=edit","_join","width=635px, height=492px;")	}}function setMenu(url){	location.href=url;}
