function combineQuoteFields() {
  var the_message = 'Company Name: ' + document.the_form_name__get_quote.company_name.value + "\n" + "\n";
  the_message = the_message + 'Project Summary' + "\n" + document.the_form_name__get_quote.project_subject.value + "\n" + "\n";
  the_message = the_message + 'Project Description' + "\n" + document.the_form_name__get_quote.project_message.value;
  document.the_form_name__get_quote.message.value = the_message;
}
