function Send_Page(){ var thisForm = document.Main_Form; if(thisForm.Send_Type.value == "Add") { var post_str = '&B_PID='+Main_Form.Back_Page.value; startRequest_Form("Sub_Add.php","post",post_str); return false; } else if(thisForm.Send_Type.value == "Main_Modify") { post_str = init_vars("document.Main_Form"); startEval("/member/modify-p.php",post_str); return false; } else if(thisForm.Send_Type.value == "Del") { if(confirm("######### 系統訊息 #########\r\r您確定要刪除這筆設定嗎?") == true) { var post_str = '&ID='+Main_Form.Edit_ID.value+ '&B_PID='+Main_Form.Back_Page.value+ '&total_num='+Main_Form.total_num.value; startEval("Sub_Del-p.php",post_str); } return false; } else if(thisForm.Send_Type.value == "Modify") { var post_str = '&ID='+Main_Form.Edit_ID.value+'&B_PID='+Main_Form.Back_Page.value; startRequest_Form("Sub_Modify.php","post",post_str); return false; } else if(thisForm.Send_Type.value == "Sub_Add") { startRequest_Form("Sub_Add-p.php","post",post_str); return false; } else if(thisForm.Send_Type.value == "Cancel") { startRequest_Form("Sub_List.php","post",post_str); return false; } }