<!--
/* Get this script and more at JavaScript City: http://www.javascriptcity.com */
function e_friend()
{
var e_add= prompt('Enter your friend\'s email address:',' ');
var subj= 'Hi, just visited this page';
var body1= 'Hi, I just visited this page at http://www.teachingsolutions.org and wanted to share it with you. Take a look!'
window.location="mailto:"+e_add+"?subject="+subj+"&body="+body1;
}
//-->