// Script to prepare an email to RFW with some comments 

function PageCommentToRFW()
{
mail_str = "mailto:recfish@recfishwest.org.au"
mail_str += "?subject=Comments on page ''" + document.title + "'' from your website " ;
mail_str += "&body=Recfishwest";
mail_str += "%0A%0A"; 
mail_str += "Here are my comments on the page on your website titled ''" + document.title + ".'' at " + location.href; 
mail_str += "%0A%0A"; 
mail_str += "(add your comments to this email, and your usual email sign off)" ; 
mail_str += "%0A%0A"; 
location.href = mail_str;
}
