function toMail ()
{
mail_str = "mailto:?subject= I thought you might be interested in this training: " + document.title;
mail_str += "&body= " + document.title;
mail_str += " at: " + location.href;
location.href = mail_str;
}