/*
   a hack to get around PayPal using a "target" attribute on the form
   which, unfortunately, keeps the page from passing HTML 4.01 strict
   validation when the attribute is specified in the FORM tag
*/
    function mySubmit(formName) {
             var locForm=document.forms[formName];
             locForm.target="paypal";
             locForm.submit();
             return true;
    }
    