// JavaScript Document
  function mailpage(){
	var txtSubject;
	var txtBody;
	var PageUrl=document.URL;
	var lineFeed = String.fromCharCode(10);
	txtSubject ="Empfehlung einer Seite der IFEU-Homepage!";
	txtBody = "Ihnen wird die folgende Seite empfohlen:"+ lineFeed;
	txtBody += "  " + PageUrl;
	document.location.href="mailto:?subject="+txtSubject+"&body="+ txtBody;
  }