<!-- Begin

/* The following script will take a statement topic and combine it with the title of your page */
/* place that in the subject line, then place the url of the page in the email body */

function mailIt(){
url = window.location;
admin="YOUR FRIEND'S EMAIL GOES HERE"; /* Put in your email address */
topic="Check out this great site: ";
 {
parent.location.href='mailto:'+admin+'?subject='+topic+' '+document.title+'&body='+url;
   }
}

// End -->


