function join_submit(){
    var theForm = document.form1 ;
    theForm.target = "workarea" ;
    theForm.method = "post";
    theForm.action = "/member/join_submit.jsp";

    theForm.submit() ;
}

function edit_submit(){
    var theForm = document.form1 ;
    theForm.target = "workarea" ;
    theForm.method = "post";
    theForm.action = "/member/edit_submit.jsp";

    theForm.submit() ;
}


