/* check location */
var newloc;

if(location.href.indexOf("http://") == 0 &&
   location.href.indexOf("http://touren.mospace.de") != 0 &&
   location.href.indexOf("touren") >= 0){
   if(! newloc){
    newloc = "http://touren.mospace.de" + location.href.substr(location.href.indexOf("touren")+6);
    document.open();
    document.writeln("<html><head><title>touren.mospace.de</title></head><body>Sie werden in KÃ¼rze weitergeleitet nach <a href='newloc'>" + newloc + "</a></body></html>");
    document.close();
    location.href = newloc;
   } else {
       alert("Sie werden in KÃ¼rze weitergeleitet nach " + newloc);
   }
}