 function mailpage()
{
mail_str = "mailto:?subject=ITID Journal " + document.title;
mail_str += "&body=Emailing the page: " + document.title;
mail_str += ". You can view it at: " + location.href;
location.href = mail_str;
}