function mail(title) 
{
     var bdy; 
     bdy = "Hi!"
     bdy+= "%0A%0A";
     bdy+= "I found this article/photo/etc. on http://www.wmn.ph (link to web site), and I want to share it with you:";
     bdy+= "%0A%0A";
     bdy+= title;
     bdy+= "%0A";
     bdy+= location.href;
     bdy+= "%0A%0A";
     bdy+= "I hope you liked it! Don’t forget to register (http://www.wmn) to find more features online";
     bdy+= "%0A%0A"; 
     
     window.location.href = "mailto:?subject="+title+'&body='+ bdy;
}
function cleanStr(str)
{
    var title;
    title = str.replace("'","\'");
    return title;
}