<!--
	var aktpage = 0;	

	function chkFrm(oFrm){		
	    if(oFrm.name=="frmSuchBestNr"){
		    if (chkNotMT(oFrm.txtSuchBestNr)){
			    BestNrSrchQS(oFrm.txtSuchBestNr.value, oFrm);
			    return true;
		    }		
		else return false;
		}else if(oFrm.name=="frmSuchFullText"){
		    if(chkNotMT(oFrm.txtFullTextSrchString)){			    
			    return true;
		    }		
		}
	}

	function sperrForm(oFrm){	
		document.frmSuch.frmSuch_sub.value= "warten";
		document.frmSuch.frmSuch_sub.disabled = true;
		with(oFrm){
			txtArt.value = document.frmAuswahl.cboArt.options[document.frmAuswahl.cboArt.selectedIndex].value;	
			txtGr.value =document.frmAuswahl.cboGr.options[document.frmAuswahl.cboGr.selectedIndex].value;
			txtFarb.value =document.frmAuswahl.cboFarb.options[document.frmAuswahl.cboFarb.selectedIndex].value;
			txtMarke.value =document.frmAuswahl.cboMarke.options[document.frmAuswahl.cboMarke.selectedIndex].value;
			cboArt.length = 1;
			cboArt.options[0].text = "Bitte warten"
			cboArt.disabled = true;	
			cboGr.length = 1;
			cboGr.options[0].text = "Bitte warten"
			cboGr.disabled = true;
			cboFarb.length = 1;
			cboFarb.options[0].text = "Bitte warten"
			cboFarb.disabled = true;
			cboMarke.length = 1;
			cboMarke.options[0].text = "Bitte warten"
			cboMarke.disabled = true;		
			submit();
		}	
		return true;
	}
	
	function BestNrSrchQS(vsBestNr, voFrm){
		var sQS =  "?sp=0;0;0;0;0;" + vsBestNr;
		voFrm.action= "ansicht_such.asp" + sQS;
	}
	
//-->
