<!-- 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 */
/* Great way to get feedback for informational sites */

function mailIt(){
url = window.location;
admin="webmaster@primuslabs.com"; /* Put in your email address */
topic="Feedback about";
 {
parent.location.href='mailto:'+admin+'?subject='+topic+' '+document.title+'&body='+url;
   }
}

// End -->

