
function CheckFrames(cLoc)
{
  // Debug Info
  if (cLoc.length > 1)
  {
    status = "Pruefe Frame " + cLoc + " ..." ;
  }
  else
  {
    return true ;
  }

  // Ist
  if (parent.frames.length == 0)
  {
    // Keine Frames vorhanden
    //alert("Keine Frames") ;
    parent.location.href = "index_en.html?" + cLoc ;
  }
}

function LoadFrames(cQuery)
{
  if (cQuery.length >= 4)
  {
    //alert(cQuery) ;

	  cQuery = cQuery.substring(1);
    cFrame = cQuery ;

    top.rechts.location.replace(cFrame) ;
  }
  else
  {
    return true;
  }
}