// POP UP A PREFORMATTED EMAIL MESSAGE WINDOW
function popupMessage() {

  // SET MESSAGE VALUES
  var to = "racemanager@nesdc.org";
  var cc = "another_person@company.com";
  var bcc = "yet_another_person@company.com";
  var subject = "NESDC Online Race Registration";
  var body = 
      "Race Location: ...\n\n" +
      "Please provide the following information for ALL drivers!" +
      "\n\nDriver: ....\nClass:..." +
      "\n\nDriver: ....\nClass:..." +
      "\n\nDriver: ....\nClass:..." +
      "\n\.."

  // BUILD MAIL MESSAGE COMPONENTS 
  var doc = "mailto:" + to + 
      "?subject=" + escape(subject) + 
      "&body=" + escape(body); 

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}
