//Funktionsaufruf von der Indexseite mit Frameset
function jump() {
  if (top.location.search!=""){
    var size=top.location.search.length;
    var Address=top.location.search.substring(1,size);
    top.frames[2].location.href=Address;
  }
}

//Funktionsaufruf von jeder Unterseite des Framesets
function frameset() {
  if (top.frames.length==0) {
  Address="http://www.service-recht.de/index.htm?"+this.document.location;
  //alert(this.document.location);
  //alert(Address);
  top.location.href=Address;
  }
}
