<script type="text/javascript">
  function SubmitForm(){
    if (arguments.length<=0) return false;
    FormObject = document.getElementsByTagName("FORM")[0]
    if ((FormObject==null)||(FormObject==undefined)) return false;
    FormObject.action = "adminsave.asp?action="+arguments[0]
    FormObject.submit()
  }
</script><input type="button" name="btn_add" value="add" onclick="SubmitForm('add')">
<input type="button" name="btn_mod" value="mod" onclick="SubmitForm('mod')">
<input type="button" name="btn_del" value="del" onclick="SubmitForm('del')">