$(function() { 
  $('#orderFrm').submit(function() {
    var inputs = [];
    $(':input', this).each(function() {
      inputs.push(this.name + '=' + escape(this.value));
    })
    tb_show('', '/complete.php?TB_iframe=true&amp;height=300&amp;width=400&' + inputs.join('&'));
    return false;
  })
});
