var firsttoggle = true;
var regularboxes = "";

function useOneBox(toggle) {
  if(firsttoggle) {
    regularboxes = $('#qtyboxes').html();
    firsttoggle = false;
  }
  if(toggle=='1') {
    $('#qtyboxes').html("<table align='center'><tr valign='top'><tr><td class='szlbl'>Quantity:</td><td><input type='text' name='NjOnej0' size=2 maxlength=3></td></tr></table>");
  } else {
    $('#qtyboxes').html(regularboxes);
  }
}
