function disp(obj)
 {
 var cBild = obj;
 var vBild = document.getElementById(cBild);
 if(vBild.style.display == "none")
  {
  vBild.style.display = "block";
  } else
   {
   vBild.style.display = "none";
   }
 }
function setFocus(obj)
 {
 if(obj == "texta"){document.kaufen.texta.focus();}
 }
