// JavaScript Document
document.write('<a href="javascript:mailpage()">Email</a> this page to a friend.');
							
// EMail to a friend function		
function mailpage()
{
mail_str = "mailto:?subject= " + document.title;
mail_str += "&body=I think you will find the information on this BeWaterWise Web page interesting";
mail_str += ". You can view it at, " + location.href; 
location.href = mail_str;
}
//end