/*

 Dieses Script stellt sicher, dass
    - die franzoesische Navigation und
    - der franzoesische Logo-Frame gelanden werden
*/

var BASE_HREF;
if( top.location.href.match( /http:\/\/www.itlos.org/) ) {
 BASE_HREF = "http://www.itlos.org";
}
else{
   if( top.location.href.match( /http:\/\/julia.itlos.org/) ) {
      BASE_HREF= "http://julia.itlos.org";
   }
   else{
      if( top.location.href.match( /http:\/\/10.0.1.88/) ) {
         BASE_HREF= "http:\/\/10.0.1.88";
      }                 
      else{
        BASE_HREF="file:///D|/Projekte/www.itlos.org/final";
      }
   }
}

if( top.frames.inhalt.frames.logo.location.href.match(/logo_fr2.html/) == null ) {
      top.frames.inhalt.frames.logo.location.href = BASE_HREF + "/logo_fr2.html";
}


if(  top.frames.inhalt.frames.nav.location.href.match(/nav_fr.html/) == null ) {
      top.frames.inhalt.frames.nav.location.href = BASE_HREF + "/nav_fr.html";
}
