function testaction(paction) 
{
   if (paction.value == "")
   {
      alert("Please select an action-button below");
      return false;
   }
   return true;
}

function setaction(form, button)
{
   // if (button.name == "bList")    {form.action.value = " List "}
   // if (button.name == "bAdd")     {form.action.value = "Create"}
   // if (button.name == "bDelete")  {form.action.value = "Delete"}
   // if (button.name == "bUpdate")  {form.action.value = "Update"}
   // if (button.name == "bConfirm") {form.action.value = "Confirm"}
   // if (button.name == "bCopy")    {form.action.value = " Copy "}
   form.action.value = button.value;
   form.submit();
}

<!--HPB_SCRIPT_CODE_40
function JumpToURL(url) 
{
  if (url != '')
  {
    window.location = url;
  }
}
//-->

