   function SetAction(objForm, method, targetwindow)
      {
      objForm.action = "ETech.asp?frmaction=" + method;

      if (targetwindow != "" && targetwindow != null)
         {
         objForm.target = targetwindow;
         }

      objForm.submit();
      }

