function checksuchwort(wo){
	if (wo.sucheingabe.value.length > 1){
		return true;
	}else{
		alert('Sie müssen wenigstens 2 Zeichen eingeben!');
		wo.sucheingabe.focus();
		return false;
	}
	return false;
}

function loe_val(wo){
	if(wo.value=='suchen'){
		wo.value='';
	}
}

function go1(){
	if (document.selecter1.SoftwareID.options[document.selecter1.SoftwareID.selectedIndex].value != "none"){
		location = "ergebnis.php?Bereich=Software&SoftwareID="+document.selecter1.SoftwareID.options[document.selecter1.SoftwareID.selectedIndex].value;
	}
}

function go2(){
	if (document.selecter2.HerstellerID.options[document.selecter2.HerstellerID.selectedIndex].value != "none"){
		location = "ergebnis.php?Bereich=Hersteller&HerstellerID="+document.selecter2.HerstellerID.options[document.selecter2.HerstellerID.selectedIndex].value;
	}
}
