/*
 ___________________________________
/ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ\
| Another JavaScript from Uncle Jim |
|                                   |
| Feel free to use this script as   |
| long as this part stays unchanged |
|                                   |
|Send any questions or comments to  |
|info@jdstiles.com or visit my site |
|at http://www.jdstiles.com for more|
|Javascripts like this one.  Thanks.|
|   Created: 1998   Updated: 2006   |
|                                   |
\___________________________________/
 ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
*/
function mailpage()
{
  mail_str = "mailto:?subject= Email a friend: " + document.title;
  mail_str += "&body= I recommend this webpage -- " + document.title;
  mail_str += ". You should check this out at, " + location.href; 
  location.href = mail_str;
}
