function emailpage() {
	var recipient = prompt("Please enter your recipient's email address below:","");
	if (recipient == null) {
		alert("You must enter an email address.")
	} else {
		var subject = document.title;
		var url = document.location.href;
		var body = "Please see the following page from Payments News that I think you'll find of interest...\n\n" + "Title:   " + subject + "\n" + "Link:    " + url + "\n";
		var message = "mailto:" + recipient + "?subject=" + escape(subject) + "&body=" + escape(body);
		window.location = message;
		window.focus();
	}
}

function bookmark() {
	if (document.all)
		window.external.AddFavorite(this.location.href, document.title);
	else if (window.sidebar)
		window.sidebar.addPanel(document.title, this.location.href, "")
}