function checkIfFrameSetExistsOld(){
  var reloadPage = false;
  if(top.Header != null){
    var header = top.Header.location.href.value;
    alert('Header-Frame ist nicht vorhanden !');
    reloadPage = true;
  }
  if(top.Navi != null){
    var navi = top.Navi.location.href.value;
    alert('Navi-Frame ist nicht vorhanden !');
    reloadPage = true;
  }

  if(reloadPage ==  true){
  alert('Lade Page Neu !');
    var actURL = document.location.href;
    actURL = actURL.replace("\&","&amp;");
    document.location.href="http://www.asv-triathlon.org/index_new.php?tu="+actURL;
  }
}

function checkIfFrameSetExists(){
var reloadPage = false;
  if(top.frames.length != 5 && top.frames.length != 7 ){
    var actURL = document.location.href;
    actURL = actURL.replace("\&","&amp;");
    document.location.href="http://www.asv-triathlon.org/index_new.php?tu="+actURL;
  
  }

}
