//-->
function Pruefe()
{



if (!top.FramesetGeladen)
{
   var txt = document.URL;
   /*  alert(txt); */

   var p = txt.lastIndexOf("/");
   var l = txt.length ;
   var t = txt.substring(p+1,l);

   /* alert (t); */

   var ZielDatei = "index.htm?" + t.substr(0,t.length) ;

   /* alert (ZielDatei); */ 


  if (document.images)
     {
     top.location.replace(ZielDatei); 
     }
  else
     { 
     top.location.href = ZielDatei ;
     }
}

}

Pruefe();


//-->







