function orderSubmit() {
  var formfields = new Array('#fname', '#lname', '#email', '#phone', '#company');
  
  for (var i = 0; i < formfields.length; i++) {
    if ($(formfields[i]).val().length < 3) {
      $(formfields[i]).css({ borderColor : 'ff0000' });
      $(formfields[i]).focus();
      return;
    } else {
      $(formfields[i]).css({ borderColor : '666666' });
    }
  }
  
  $.get("SubmitOrder/", {
    appliance: $('#appliance').val(),
    computers: $('#computers').val(),
    fname:     $('#fname').val(),
    lname:     $('#lname').val(),
    email:     $('#email').val(),
    phone:     $('#phone').val(),
    fax:       $('#fax').val(),
    company:   $('#company').val(),
    endusers:  $('#endusers').val(),
    address1:  $('#address1').val(),
    address2:  $('#address2').val(),
    city:      $('#city').val(),
    state:     $('#state').val(),
    zip:       $('#zip').val(),
    country:   $('#country').val()
  }, function (data) {
    if (data == 'true') {
      $('#fields').html('Your purchase order has been submitted to sales. A representative will contact you shortly to confirm your order. Thank you for your business!');
    } else {
      $('#fields').html('There was an error while submitting your purchase order. Please try again, or email NullBound Sales directly at <a href="mailto:sales@nullbound.com">sales@nullbound.com</a>.');
    }
  });
}