/* redirect.js */
function relocate() {
  var href = location.href;
  var ix = href.indexOf('.net/ratec/');
  if (ix != -1) {
    location.href = "http://ratec.actbus.net" + href.substr(ix+10);
  }
}
relocate()