// JavaScript Document


// email function
// EDIT TO MODIFY body MESSAGE 
  function mailpage()	{
    mail_str = "mailto:?subject=Norwich gives international students a Vermont-style welcome";
    mail_str += "&body=I thought you might enjoy this article about Norwich University extending a personal, Vermont-style welcome to international students. ";
    mail_str += " You can view it at " +  " http://www.norwich.edu/about/emagazine/senseofplace/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('senseofplace email');'>Email to a friend</a></li>");
  }
