function fn_GoUrl(idx){
	switch(idx){
		case '0' : 	
				document.location.href = 'index.htm';
				break;
		case '1' : 	
				document.location.href = 'about.htm';
				break;
		case '2' : 	
				document.location.href = 'products.asp';
				break;
		case '3' : 	
				document.location.href = 'catalog.asp';
				break;
		case '4' : 	
				document.location.href = 'customers.asp';
				break;
		case '5' : 	
				document.location.href = 'member.asp?idx=1';
				break;

	}
}

function fn_Login(idx){
	document.location.href = 'member.asp?idx=1';
}

function fn_Join(idx){
	document.location.href = 'member.asp?idx=2';
}

function fn_Logout(){
	sFrm.location.href = 'logout.asp';
}


function fn_GoHome(){
	document.location.href = '/';
}


