/*
function checkEmailAddress(field) {
	// the following expression must be all on one line...
	var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
	if (goodEmail) {
		good = true;
	} else {
		alert('Please enter a valid e-mail address.');
		field.focus();
		field.select();
		good = false;
	}
}
*/
u = document.title+"\n"+document.location;
m = "Check out this picture...";
u = escape(u);
m = escape(m);
email = "";
function mailThisUrl() {
		// the following expression must be all on one line...
		window.location = "mailto:"+email+"?subject="+m+"&body="+u;
}
