/*
 _____________________________________
/?????????????????????????????????????\
| Another JavaScript from Uncle Jim   |
| Feel free to copy, use and change   |
| this script as long as this part    |
| remains unchanged. You can visit    |
| my website at http://jdstiles.com   |
| for more scripts like this one.     |
| Created: 1998 Updated: 2006         |
\_____________________________________/
 ?????????????????????????????????????
*/
function sendpage()
{
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= Just want to turn you onto this great site -- " + document.title;
  mail_str += ". You should check this out at, " + location.href; 
  location.href = mail_str;
}

