// *** Fügt eine E-Mail-Adresse ein ***
function InsertMail(mailnam,mailsvr,maildom,text)
{
  if(text=="")
    document.write('<a href="mailto:'+mailnam+'@'+mailsvr+'.'+maildom+'">'+mailnam+'@'+mailsvr+'.'+maildom+'</a>');
  else
    document.write('<a href="mailto:'+mailnam+'@'+mailsvr+'.'+maildom+'">'+text+'</a>');
}
function CommonPopup(url, width, height, wndname)
{
        wnd = window.open(url, wndname,'toolbar=no, location=no, scrollbars=yes, width=' + width + ', height=' + height + ', left=100, top=100, alwaysRaised=true');
        wnd.focus();

        if (wnd.opener == null)
        {
                wnd.opener = self;
        }
}

