// JavaScript Document

// Print Page Function
  <!--
  function printpage() {
  window.print();
  }
  //-->

// Email Page to Friend Functions 

function mailpage()
{
mail_str = "mailto:?subject= Gaylord and Dorothy Donnelley Foundation Site Link" ;
mail_str += "&body= Hi, I wanted you to see this page on the Gaylord and Dorothy Donnelley Foundation Site " ;
mail_str += "... you can see the page at: " + location.href;
location.href = mail_str;
}