// JavaScript Document
function mailpage() 
{ 
mail_str = "mailto:?subject= Check out this webpage --> " + document.title; 
mail_str += "&body= " + document.title; 
mail_str += "... at: " + location.href; 
location.href = mail_str; 
} 

