function empfehlen() {
 var turl = location.href;
 mail_str = "mailto:?subject= Sucon-training.de | " + document.title;
 mail_str += "&body=Hier gibt es eine interessante Seite: \n" + document.title;
 mail_str += ".\n\n Die Adresse lautet: \n" + turl;
 location.href = mail_str;
}

var Monatsname = ["01", "02", "03", "04", "05","06", "07", "08", "09", "10","11", "12"];
function modifyString(){
 var date = new Date();
 date.setTime(Date.parse(document.lastModified));
 return Monatsname[date.getMonth()] + "/" + date.getYear();
}
