var exit=true;
function setLinks() {
  for ( i=0; i < document.links.length; i++ ) {
    url = self.document.links[i].href;
    if ( url.indexOf('javascript:') == 0 ) {
      self.document.links[i].href = url.replace(/javascript:/,'javascript:exit=false;');
    } else if ( url.indexOf('mailto:') == 0 ) {
      /* do nothing */
    } else {
      self.document.links[i].href = "javascript:exit=false;window.location.href='" + url + "'";
    }
  }
}

function bye() {
  if (typeof(windowprops) == "undefined" )    
      windowprops = "width=420,height=690,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no"; 
  if (typeof(followUrl) == "undefined" )
     followUrl = 'http://www.sadorado.com/allgemeines/service/follow_pop_ups/stopp_follow_pop_under/index.html';
  if (exit){
    followPage = window.open(followUrl,'followPage',windowprops);
    window.focus();
  }
}
