/*****************************************************************************/
/* Name der Datei:       lenpiltzde.js                                       */
/* Erstellung am:        11.09.2011                                          */
/* Letzte Aenderung am:  11.09.2011                                          */
/* Letzte Aenderung von: LP                                                  */
/*****************************************************************************/
/* Aenderungshistorie:                                                       */
/* 11.09.2011  Grundsaetzliche Funktionen eMail und Frameset-Ckeck           */
/*****************************************************************************/

/* Frameset-Check: Wenn sich die Datei in einem Frameset befindet, wird sie neu top geladen */

if (parent.frames.length > 0)
    {
    top.location.href=location.href;
    }

/* eMail-Funktion */

function email(name,betreff)
    {
    var vorat="";
    var nachat="";
    if (name=="len")
       {
       vorat="info";
       nachat="lenpiltz.de"
       }
    var at="@";
    if (betreff=="")
       {
       location.href="mailto:"+vorat+at+nachat
       }
    else
       {
       location.href="mailto:"+vorat+at+nachat+"?subject="+betreff
       }
    }
