// JavaScript Document
//<script type="text/javascript">
//<!-- This script and many more are available free online at -->
//<!-- The JavaScript Source!! http://javascript.internet.com -->
//<!-- Created by: Jim Stiles: http://jdstiles.com/ -->
//<!-- Begin

function mailpage()
{
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= Here is a link to your requested information: " ;
  mail_str += document.title + " : ";
  mail_str += location.href; 
  location.href = mail_str;
}

