// POP UP A PREFORMATTED EMAIL MESSAGE WINDOW
function emailthisurl() {

// SET MESSAGE VALUES
  	var to = "";
/*	use these instead if text box for To and CC is made available
 	var to = document.form.emailto.value;
	var cc = document.form.emailccto.value;
*/
  	var subject = "2001 Environmental Challenges: " + pageTitle;
  	var body = "EPA New England just issued its \"2001 Environmental Challenges\" report. " 
	+ "I thought you might enjoy this write-up in the report, "
	+ pageTitle + " (" +
      document.URL + "). " + "\n\nThe full report and other useful information can be found at http://www.epa.gov/region01/ ."
//    "\n\nSincerely,\n\n" + document.form.emailfrom.value

// BUILD MAIL MESSAGE COMPONENTS 
  	var doc = "mailto:" + to + 
/* a ? is needed after the mailto address and & is needed for additional mail 
message variables such as 
	  "?cc=" + cc +  
	  "&bcc=" + bcc +
	  "&subject=" + escape(subject) +  
*/	  
      "?subject=" + escape(subject) + 
      "&body=" + escape(body); 

// POP UP EMAIL MESSAGE WINDOW
  	window.location = doc;
}