// $Id: common.js,v 1.1 2006/12/06 14:53:24 Besitzer Exp $ 


// kleiner Anti-Spam-Schutz, damit Robots nicht die eMail-Adressen abgrabben können
function printEmail(prefix,domain,show) {
  document.write('<a href=\"mailto:' + prefix + '@' + domain + '\" class=\"textlink\">');
  if ((show==null) || (show=="")) {
    document.write(prefix + '@' + domain + '</a>');
  } else {
    document.write(show + '</a>');
  }
}

// liefert das aktuelle Systemdatum (Client) zurück
function aktDatum() {
  nUnixtime=Date.parse (document.lastModified); 
  modDate=new Date (nUnixtime); 
  datum=fillZero(modDate.getDate())+"."+fillZero(modDate.getMonth()+1)+"."+modDate.getFullYear();
  zeit=fillZero(modDate.getHours())+":"+fillZero(modDate.getMinutes())+":"+fillZero(modDate.getSeconds());
  return datum;
}

// ENDE
