//simple mailto: generator that includes current URL in the msg. -chris b.
function shareThis()
{
var str = "mailto:?subject=I thought you'd find this interesting.&body=I thought you'd find this interesting. It's from the Blue Buffalo%0ACompany...they make natural dog food and cat food. Check it out.%0A%0A" + location.href;
location.href = str;
}
