function workAroundGetFullYear(d) {
   if ( _ver >= 1.2 ) {
      return d.getFullYear();
   } else {
      var y = d.getYear();
      if(y < 1000) y += 1900;
      return y;
   }
}

function fuss( email, dom ) {
  var stand = Date.parse(document.lastModified);
  if ( stand != 0 ) {
    var date = new Date(stand);
    document.write( "zuletzt aktualisiert am " + date.getDate() + "." 
                  + (1 + date.getMonth()) + "."
                  + workAroundGetFullYear(date) + " &#8226; " );
  };
  document.write( "<a href='mailto:" + email + "@" + dom
                + "'>" + email + "@" + dom + "</a>");
}

function a_href( email, dom ) {
  document.write( "<a class=\"normal\" href='mailto:" + email + "@" + dom
                + "'>" + email + "@" + dom + "</a>");
}

function a_top( email, dom) {
  location.href= "mailto:" + email + "@" + dom;
}

var sw=0;
function search( ) {
  if (sw!=0) { sw.close() };
  sw=window.open("http://www.frankfurter-info.org/search?portal_type:list=Event&SearchableText="+document.searchform.SearchableText.value,"","");
  sw.focus();
};