function noblishApplyFunc(cd){

	var argLen = arguments.length;
	
	switch (cd){
		case "home":
			top.winlocationFunc('/index.php','etcBasicForm','');
			break;
		case "md":
			top.winlocationFunc('/productlist.php','etcBasicForm','','itemMenuID1|MD');
			break;
		case "buy":
			top.winlocationFunc('/buy.php','etcBasicForm','');
			break;
		case "cart":	//Àå¹Ù±¸´Ï
			top.winlocationFunc('/product_cart.php','etcBasicForm','');
			top.document.all['divBasicID'].style.display='';
			break;
		case "custom":	//°í°´¼¾ÅÍ
			top.winlocationFunc('/customer.php','etcBasicForm','');
			break;
		default :
			break;
	}

	return;
}