// JavaScript Document

function mailpage() //send by email EN
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=Take a look at this Web site: " + document.title;
mail_str += ". This page is very interesting:  " + location.href;
location.href = mail_str;
}