// JavaScript Document
function mailThisUrl()
{
	mail_str = "mailto:?subject=Check this out ...";
	mail_str += "&body=- " + document.title;
	mail_str += ". This might be of some interest to you: " + escape(location.href); 
	location.href = mail_str;
}
// -->