function IFrameStart(){
  if (location.search){
    var sea = location.search;
    var url = sea.substring(1, sea.length);

    Fenster.location.href = url;    // Fenster = name des zielframes
	}

  if (self != top){
  top.location.href = self.location.href;
  }
}
