function mailpage()
{
mail_str = "mailto:?subject=Check out this article: " + document.title;
mail_str += "&body=Hello, you have been sent a link to the @UCSD Magazine article: " + document.title;
mail_str += ". You can view it at here: " + location.href; 
mail_str += ". @UCSD is a UCSD Alumni Association Publication."; 
location.href = mail_str;
}