// JavaScript Document
<!-- 
function e_friend(marg) 
{ 
var e_add= prompt('Enter your friend\'s email address:',' '); 
var subj= prompt('Enter the subject of your message:',' '); 
if ((subj==" ") || (subj==null)) 
subj="Hi!"; 
window.location="mailto:"+e_add+"?subject="+subj+"&body="+marg; 
} 
//--> 