// JavaScript Document

function init() {
	var divMenu = document.getElementById("divMenu");
	divMenu.style.left = (document.body.scrollWidth / 2) - 475;
	divMenu.style.display = "block";
}

function goMenu(a,b) {
	if(a==2) {
		if(b==1) document.location.href = "/info/new_hanbok.php?galleryID=gallery1";
		if(b==2) document.location.href = "/info/new_hanbok.php?galleryID=gallery2";
		if(b==3) document.location.href = "/info/new_hanbok.php?galleryID=gallery3";
		if(b==4) document.location.href = "/info/new_hanbok.php?galleryID=gallery4";
	} else if(a==3) {
		if(b==1) document.location.href = "/board/index.php?mode=list&boardid=board_new_after";
		if(b==2) document.location.href = "/board/index.php?mode=list&boardid=board_gallery";
	} else if(a==4) {
		if(b==1) document.location.href = "/board/index.php?mode=list&boardid=board_qna";
		if(b==2) document.location.href = "/home/sub04/02.html";
		if(b==3) document.location.href = "/home/sub04/03.html";
		if(b==4) document.location.href = "/home/sub04/04.html";
		if(b==5) document.location.href = "/board/index.php?mode=list&boardid=board_notice";
	} else {
		if(a<10) a = "0"+a;
		if(b<10) b = "0"+b;

		var path = "/home/sub"+a;
		var file = "/"+b+".html";
	
		document.location.href = path+file;
	}
}

function pop(arg) {
    if(arg=="login") window.open("/info/new_member_login.html", "winPop", "width=580 height=430");
    if(arg=="member") window.open("/info/new_member.html", "winPop", "width=580 height=570");
    if(arg=="logout") window.open("/member/new_logout.php", "winPop", "width=200 height=200");
    if(arg=="modify") window.open("/info/new_member_modify.html", "winPop", "width=580 height=580");
}