function popupMessage() {

  // SET MESSAGE VALUES
  var to = document.send_friend.to_addr.value;
  var subject = "Visit Oakwood Veneer Company's Web Site!";
  var body = "I just visited http://www.oakwoodveneer.com and thought you might be interested in visiting it, too. Oakwood Veneer Company has more than 170 species of flexible wood veneer in stock and has overnight shipping if you ever need it immediately";

  // BUILD MAIL MESSAGE COMPONENTS 
  var doc = "mailto:" + to + 
      "?subject=" + escape(subject) + 
      "&body=" + escape(body); 

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}
