function schieben (element,pos) {
 var wert = pos + "px";
 var elem = "b" + element;
 document.getElementById(elem).style.top=wert;
}
