function SucheApp() {
  var Suchbegriff = document.getElementById('SearchWord').value;
  if((Suchbegriff == '')||(Suchbegriff == 'App Suchbegriff eintragen')){
    alert("Trage bitte einen Suchbegriff ein");
  }
  else{
    if(3 > Suchbegriff.length){
      alert("Dein Suchbegriff muss mindestens 3 Zeichen haben!");
    }
    else{
      var THeight = document.getElementById('BodyHeight').offsetHeight;
      adress = '12APP/SearchResult.php?search='+Suchbegriff;
      document.body.style.overflow = 'hidden';
      document.getElementById('Darker').style.width= screen.width;
      document.getElementById('Darker').style.height= THeight;
      document.getElementById('Darker').style.background = '#ffffff';
      document.getElementById('RegBoxInh').style.display = 'inline';
      document.getElementById('RegBoxInh').innerHTML = '<div style="position:absolute; top:-30px; right:-20px; padding:3px;"><a href="javascript:CloseAnmeldung()" style="color:#D1A400; text-decoration:none;"><big><b>X</b></big></a></div><iframe src="'+adress+'" frameborder="0" width="600" height="300"></iframe>';
    }
  }
  return
}

var suchs;
function SucheApp2(suchs) {
  var Suchbegriff = suchs;
  var THeight = document.getElementById('BodyHeight').offsetHeight;
      adress = '12APP/SearchResult.php?search='+Suchbegriff;
      document.body.style.overflow = 'hidden';
      document.getElementById('Darker').style.width= screen.width;
      document.getElementById('Darker').style.height= THeight;
      document.getElementById('Darker').style.background = '#ffffff';
      document.getElementById('RegBoxInh').style.display = 'inline';
      document.getElementById('RegBoxInh').innerHTML = '<div style="position:absolute; top:-30px; right:-20px; padding:3px;"><a href="javascript:CloseAnmeldung()" style="color:#D1A400; text-decoration:none;"><big><b>X</b></big></a></div><iframe src="'+adress+'" frameborder="0" width="600" height="300"></iframe>'; 
  return
}
