
function printPage()
{
   window.print();  
}



function emailPage()
{
   var mail;
   mail = "mailto:?subject=I saw this and thought of you at Carlton Lodge ";
   mail += "&body=I saw this and thought of you: " + document.title;
   mail += ". You can view it at www.thecarltonlodge.com or " + location.href; 
   location.href = mail;
}
