// JavaScript Document

function EmailThisPage() {
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body=I thought you might be interested in " + document.title;
mail_str += ". You can view it at, " + location.href; 
location.href = mail_str;
}


function EmailSPPage() {
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body=Pienso que te va a interesar " + document.title;
mail_str += ". Puedes leerlo aqui " + location.href; 
location.href = mail_str;
}

function Notifyme() {
mail_str = "mailto:info@plough.com?subject=Sign%20me%20up%20for%20Plough%20notification";
location.href = mail_str;
}

function PageComment() {
mail_str = "mailto:mailto:info@plough.com?subject=Response to " + document.title;
location.href = mail_str;
}