function showURL()
{
	var currentURL = window.location;
	var email = document.sendArticle.email.value;
	var name = document.sendArticle.name.value;
	var subject = "Thought You'd Enjoy This";
	var body = "Hey " + name + ", \n\n I was just reading this and thought you'd enjoy it: \n\n" + currentURL + " . \n\nLet me know what you think about it?";

	var url = "mailto:" + email + "?subject=" + subject + "&body=" + body;
	location.href = url;
}
