function oneDepth(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub01/page01.php";
			break;
		case "2" : 
			location.href="/contents/sub02/page01.php";
			break;
		case "3" : 
			location.href="/contents/sub03/page01.php";
			break;
		case "4" : 
			location.href="/contents/sub04/page01.php";
			break;
		case "5" : 
			location.href="/contents/sub05/page03.php";
			break;
		case "6" : 
			location.href="/contents/sub06/page01.php";
			break;
		
	}
}
function twoDepth01(URL){
	switch(URL){	
		case "1" : 
			location.href="/contents/sub01/page01.php";
			break;
		case "2" : 
			location.href="/contents/sub01/page02.php";
			break;		
					
	}
}
function twoDepth02(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub02/page01.php";			
			break;
					
	}
}
function twoDepth03(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub03/page01.php";
			break;		
					
	}
}

function twoDepth04(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub04/page01.php";
			break;
				
	}
}



function twoDepth05(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub05/page03.php";
			break;
		
				
	}
}

function twoDepth06(URL){
	switch(URL){			
		case "1" : 
			location.href="/contents/sub06/page01.php";
			break;
			
	}
}
