function EmailLink(){
	u=window.location;
	var subject = ""+document.title+"";
	var body = "Hello,\n\n\tI found a great website that I thought you may be interested in. \n\n\t You can view it by clicking this link: \n " +u + "\n\n Hope you like it!";
	var doc = "mailto:?subject=" + escape(subject) + "&body=" + escape(body);
	window.location = doc;
}
