// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!-- Begin
function mailsome1(){
who=prompt("Enter recipient's email address: ","yourname@your_domain.com");
what=prompt("Enter the subject: ","none");
if (confirm("Are you sure you want to mail "+who+" with the subject of "+what+"?")==true){
parent.location.href='mailto:'+who+'?subject='+what+'';
   }
}

// End -->
