//<![CDATA[

// ³»ºñ°ÔÀÌ¼ÇÀº ´Þ¶óµµ ÇÔ¼ö´Â openURL
function openURL(bigNum,smallNum) {
	//alert("Comming soon...");
	//alert(bigNum+'/'+smallNum);
	var filePath;
	
	if(bigNum == 1) {
		switch(parseInt(smallNum)) {
			case 2 :
				filePath	=	"/notice/notice.php?cate=notice";
				break;
			case 3 :
				filePath	=	"/notice/notice.php?cate=event";
				break;
			case 4 :
				filePath	=	"/notice/notice.php?cate=test";
				break;
			default :
				filePath	=	"/notice/notice.php";
				break;
		}
	} else if(bigNum == 2) {
		switch(parseInt(smallNum)) {
			case 2 :
				filePath	=	"/guide/control.php";
				break;
			case 3 :
				filePath	=	"/guide/book.php";
				break;
			default :
				filePath	=	"/guide/install.php";
				break;
		}
	} else if(bigNum == 3) {
		switch(parseInt(smallNum)) {
			case 2 :
				filePath	=	"/information/job.php";
				break;
			case 3 :
				filePath	=	"/information/system.php";
				break;
			case 4 :
				filePath	=	"/information/quest.php";
				break;
			case 5 :
				filePath	=	"#";
				//filePath	=	"/information/item.php";
				break;
			case 6 :
				filePath	=	"/information/monster.php";
				break;
			case 7 :
				filePath	=	"/information/npc.php";
				break;
			case 8 :
				filePath	=	"/information/map.php";
				break;
			case 9 :
				netgameNcash();
				return;
				break;
			default :
				filePath	=	"/information/character.php";
				break;
		}
	} else if(bigNum == 4) {
		switch(parseInt(smallNum)) {
			case 2 :
				filePath	=	"#";
				//filePath	=	"/club/adventure.php";
				break;
			case 3 :
				filePath	=	"#";
				//filePath	=	"/club/minigame.php";
				break;
			case 4 :
				filePath	=	"http://www.netgame.com/";
				break;
			default :
				filePath	=	"/club/toon.php";
				break;
		}
	} else if(bigNum == 5) {
		switch(parseInt(smallNum)) {
			case 2 :
				filePath	=	"/community/players.php";
				break;
			case 3 :
				filePath	=	"/community/screenshot.php";
				break;
			case 4 :
				filePath	=	"#";
				//filePath	=	"/community/sscartoon.php";
				break;
			case 5 :
				filePath	=	"/community/poll.php";
				break;
			case 6 :
				filePath	=	"/community/multimedia1.php";
				break;
			case 7 :
				filePath	=	"/community/fansite.php";
				break;
			default :
				filePath	=	"/community/forum.php";
				break;
		}
	} else {
		switch(parseInt(smallNum)) {
			case 2 :
				if(!netgameUserCheck()) return;
				filePath	=	"/support/cs_mother.php";
				break;
			case 3 :
				filePath	=	"/support/faq_list.php";
				break;
			case 4 :
				netgameEmailGuide();
				return;
				break;
			case 5 :
				netgameFooter(1);
				return;
				break;
			case 6 :
				netgameCoupon();
				return;
				break;
			default :
				filePath	=	"/support/download.php";
				break;
		}
	}
	
	if(filePath == "#") {
		alert("Coming soon...");
	} else {
		top.location.href	=	filePath;
	}
}

//]]>
