/*

 Dieses Script stellt sicher, dass 
	- die englische Navigation und
	- der englische 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_en2.html/) == null ) {
      top.frames.inhalt.frames.logo.location.href = BASE_HREF + "/logo_en2.html";
}


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