function mailpage()
{
    mail_str = "mailto:?subject=Check out the " + makeProper(document.title);
    mail_str += "&body=I thought you might be interested in the " + makeProper(document.title);
    mail_str += ". You can view it at, " + makeProper(location.href);
    location.href = mail_str;
}

function makeProper(string) {
	string = string.replace(/&/g, "%26");	
	string = string.replace(/ /g, "%20");
	return	string;
} 