function wosuchen(){
   if(document.forms.Suchform.ws.checked == true){
      document.forms.Suchform.action = '/suche.php';
   }
   if(document.forms.Suchform.vl.checked == true){
      document.forms.Suchform.action = '/shop/BLNET.ASP?WCI=wciArtList';
   }
   //else document.forms.Suchform.action = '/shop/BLNET.ASP?WCI=wciArtList';   
   document.forms.Suchform.submit();
}
function setmenge(id){
  v = document.getElementById(id).value;
  if(v == '') document.getElementById(id).value = 1;
  return;
}