 function sendpage()
{
mail_str = "mailto:?subject= Surftipp: " + document.title;
mail_str += "&body=Schau dir die Homepage einmal an! Der Titel: " + document.title;
temp1 = location.href;
temp2 = temp1.replace(/&/g,'%26');
mail_str += ". Hier ist die Adresse: " + temp2;
location.href = mail_str;
}