function set_rib_qty() { calc_f = document.frmCalc; order_f = document.frmOrder; if (calc_f.belts.value == "" || calc_f.ribs.value == "") { alert("Need both belts and ribs."); } else { order_f.qty1.value = calc_f.belts.value * calc_f.ribs.value; order_f.txtComment.value = calc_f.belts.value + "X" + calc_f.ribs.value; } } function J1() { document.write("
"); }