// JavaScript Document


// email function
// EDIT TO MODIFY body MESSAGE 
  function mailpage()	{
    mail_str = "mailto:?subject=Hitting the river: Norwich University emagazine";
    mail_str += "&body=I thought you might enjoy this article about a Norwich University intensive, hands-on summer course that lets undergraduates immerse themselves in the ecology and geology of the Connecticut River Valley. ";
    mail_str += " You can view it at " +  " http://www.norwich.edu/about/emagazine/hittingtheriver/index.html "; 
    location.href = mail_str;
  }
	
// write email menu function so it isn't available to users with javascript disabled
// DO NOT EDIT
  function email()	{
    document.write("<li><a class='email' href='javascript: mailpage()' onclick='javascript:urchinTracker('river email');'>Email to a friend</a></li>");
  }
