function Email() {
		
         var subject = "Interesting Page";
         var body    = "I found this page on www.flyaboveall.com, and thought you might enjoy viewing it: ";
		var body2 = " Fly Above All is a full-service paragliding school, offering classes on learning how to fly, scenic tandem flights, and all the equipment and accessories a pilot needs to enjoy the magic of foot-launched flight! Visit the Fly Above All home page at http://www.flyaboveall.com."
		
         window.location = "mailto:?subject=" + subject + "&" +
                           "body=" + body + window.location + body2;
     }
	 
	 
	