function goEdit(no){
	document.pageFrm.action='write.jsp?mode=edit';	
	document.pageFrm.bp_bbsNo.value=no;
	document.pageFrm.submit();	
}

function goReply(no){
	document.pageFrm.action='write.jsp?mode=reply';	
	document.pageFrm.bp_bbsNo.value=no;
	document.pageFrm.submit();	
}
function goList(){
	document.pageFrm.target = "_top";
	document.pageFrm.action='list.jsp';	
	document.pageFrm.submit();	
}
function needLogin() {
	alert("·Î±×ÀÎÈÄ ÀÌ¿ë°¡´ÉÇÕ´Ï´Ù.");
}
function popup_delete(no){	
	win=window.open('','win','width=450,height=280,left=10,top=10,resizable=no,toolbars=no,scrollbars=no');
	document.pageFrm.target = "win";  	
	document.pageFrm.action='/kw_board/popup_pass.jsp';	
	document.pageFrm.bp_bbsNo.value=no;
	document.pageFrm.submit();		
}

function popup_modify(no){
	win=window.open('','win','width=450,height=280,left=10,top=10,resizable=no,toolbars=no,scrollbars=no');
	document.pageFrm.target = "win";  	
	document.pageFrm.action='/kw_board/popup_pass_mod.jsp';	
	document.pageFrm.bp_bbsNo.value=no;
	document.pageFrm.submit();	
}