function fncMore( gbn ) {
	var url = "/emwp/gov/mogaha/ntis/web/caf/mwwd/action/CafMwWdGuideAction.do"
			+ "?context=NTIS"
			+ "&jndinm=CafMwWdGuideEJB"

	switch( gbn ) {
		case 'N' :  // Notice
			url = url + "&method=selectListNotice"
					  + "&methodnm=selectListNotice"
					  + "&menu_id=CAFSYSWebNoticeL";
			break;
		case 'F' :  // FAQ
			url = url + "&method=selectListFAQ"
					  + "&methodnm=selectListFAQ"
					  + "&menu_id=CAFSYSWebFaqL";
			break;
	}

	this.location = url;
}
 
function fncOpenNotice( no ) {
	var url = "/emwp/gov/mogaha/ntis/web/caf/mwwd/action/CafMwWdGuideAction.do"
			+ "?context=NTIS"
			+ "&jndinm=CafMwWdGuideEJB"
			+ "&method=selectNotice"
			+ "&methodnm=selectNotice"
			+ "&menu_id=CAFSYSWebNoticeL"
			+ "&mw_notfy_no="+ no;

	this.location = url;
}

function fncViewDtl( _no ) {
	var url = "/emwp/gov/mogaha/ntis/web/caf/mwwd/action/CafMwWdGuideAction.do"
			+ "?context=NTIS"
			+ "&jndinm=CafMwWdGuideEJB"
			+ "&method=selectFAQ"
			+ "&methodnm=selectFAQ"
			+ "&menu_id=CAFSYSWebFaqL"
			+ "&faq_no="+ _no;

	this.location = url;
}