
function postToEcommerce(M_id,P_count,P_part1,P_desc1,P_price1,P_qty1)
           {
           var theform;
           if (window.navigator.appName.toLowerCase().indexOf('microsoft') > -1) {
            theform = document.Form;
           }
           else {
            theform = document.forms['Form'];
           }
	   theform.M_id.value = M_id;
	   theform.P_count.value = P_count;
	   theform.P_part1.value = P_part1;
	   theform.P_desc1.value = P_desc1;
	   theform.P_price1.value = P_price1;
	   theform.P_qty1.value = P_qty1;

           theform.action = 'https://va.eftsecure.net/eftcart/additem.asp';
           theform.encoding='application/x-www-form-urlencoded';
           theform.__VIEWSTATE.name = 'NOVIEWSTATE';
           theform.submit();
           }



