// JavaScript Document

// Mail page through email client
function mailPage() {
	mail = "mailto:?subject= I would like to share this page with you: " + document.title;
	mail += "&body= " + document.title + "... at: " + location.href;
	location.href = mail;
} 
