<!--
    function SubmitForm() {
       var DoSubmit=false;

          if (eval(document.forms[0].p3[1].checked)) {
             document.forms[0].Qty[1].value=1;
             DoSubmit=true;
          }
          if (eval(document.forms[0].p2[2].selectedIndex)) {
             document.forms[0].Qty[2].value=1;
             DoSubmit=true;
          }


       if (DoSubmit) {
          document.forms[0].submit();
       }
    }

// -->
