function send()
{
email=window.prompt("Please enter the recipients email address.","example@msn.com");
name=window.prompt("Whats your name?","");
var loc = (location.href)
   window.open ("mailto:"+email+"?subject=You have just been sent this message by "+name+"&body=check this link out: "+loc+"","mywindow")
}
