<!-- //
function emailPage() 
	{
	var url = document.URL;
 	var sendTo = "Erase this and enter your friends email address here";
	var subject = "Interest to You";
	
  	var body = "Hi\n\nI came across this webpage " +url+ " and thought that this may be beneficial and of interest to you.\n\nTake Care\n\n";
	
	var doc = "mailto:" + sendTo + "?subject=" + escape(subject) + "&amp;body=" + escape(body);
 
 	window.location = doc;
 	}
// -->
