//Email "AAAWA website page to a friend" javascript code.

function mailpage()
{
mail_str = "mailto:?to=Replace this with your friend's email address"
mail_str += "&subject=Australian Anglers Association's page ''" + document.title + "'' from their website " ;
mail_str += "&body=%0A%0AI thought you might be interested in a page on the Australian Anglers Association's website titled ''" + document.title + ".''" ;
mail_str += "%0A%0A"; 
mail_str += "You can view it at " + location.href; 
mail_str += "%0A%0A%0A"; 
mail_str += "(add your own comments to the email, and your usual email sign off)" ; 
mail_str += "%0A%0A"; 
location.href = mail_str;
}
