/***********************************************************************************************
Script to send an email using the html "mailto:" command
Written by Roberto Chavez, 05/28/2008.
************************************************************************************************
*/

function send() {
	var curLoc = window.location.href;
	var curTitle = document.title;
	window.location.href = "mailto:?subject="+curTitle+"&body="+curLoc;
}
