     function mailThisPage()
     {
         var link = window.location;
         var emailSubject = "Check this out: "+ document.title;
         var emailAddress=prompt("Please enter the recipients email address","");
         window.location  = "mailto:"+emailAddress+"?Subject="+emailSubject+"&body="+link                     
     }
