<!-- //
function emailPage() 
	{
	var url = document.URL;
 	var sendTo = "Please enter your friends email address here";
	var subject = "Interest to You";
	
  	var body = "Hi,\n\nI came across this webpage " +url+ " and found it attention-grabbing. I am sending it to you as I am sure it will 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;
 	}
// -->
