function setzeroes(theForm) {
with (theForm) {
        for (i=0; i < elements.length; i++) {
                if ( elements[i].name == "mv_order_quantity") {
                        if ( elements[i].value < 1 ) {
                                elements[i].value = '0';
                        }
                }
        }
}
return true;
}

