// JavaScript Document
function mailpage()
		{
		mail_str = "mailto:?subject=Take a look at this...";
		mail_str += "&body=Hi,";
		mail_str += "%0a%0d";
		mail_str += "I came across this page on the NFU Mutual web site and thought you'd want to take a look at it.";
		mail_str += "%0a%0d";
		mail_str += "You can view it at " + location.href; 
		location.href = mail_str;
		}