function formHandler(){
  var URL = document.Suche.land.options[document.Suche.land.selectedIndex].value;
  var keyword = document.Suche.keyword.value;
  if (keyword =="Suchbegriffe...") keyword="";
  if (document.Suche.land.options[document.Suche.land.selectedIndex].value =="home") {
    window.location.href = "index.php";
  }
  else if (document.Suche.land.options[document.Suche.land.selectedIndex].value =="0"){
  }
  else if (document.Suche.land.options[document.Suche.land.selectedIndex].value !="home"){
    URL = "index.php?start=0&anzeige=10&keyword="+keyword+"&page=search&land="+URL;
    window.location.href = URL;
  }
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}

function sendit(senden)
{
  var name = navigator.appName;
  if (senden==1) document.detailsuche.page.value='search';
  page =   document.detailsuche.page.value;
  keyword =   document.detailsuche.keyword.value;
  land =   document.detailsuche.land.value;
  sterne =   document.detailsuche.sterne.value;
  ort =   document.detailsuche.ort.value;
  preis =   document.detailsuche.preis.value;
  if (keyword=="Suchbegriffe...") { keyword= '';}
  
  if (name == "Microsoft Internet Explorer"){
    url='index.php?page='+page+'&start=0&anzahl=10&keyword='+keyword+'&land='+land+'&preis='+preis+'&sterne='+sterne+'&ort='+ort;
    window.location.href= url;
    this.navigate(url);
  }
  else {
    document.detailsuche.action='index.php?page='+page+'&start=0&anzahl=10&keyword='+keyword+'&land='+land+'&preis='+preis+'&sterne='+sterne+'&ort='+ort;
	document.detailsuche.submit();
  }
}