 function highLight(oZelle,iTyp) {
    oZelle.style.backgroundColor="white";
    oZelle.style.backgroundImage="url(pix/bullet0"+iTyp+"b.gif)";
 }

 function highLow(oZelle,iTyp,high) {
    var b="";
    if(high) b="b";
    oZelle.style.backgroundColor="#E2ECF9";
    oZelle.style.backgroundImage="url(pix/bullet0"+iTyp+b+".gif)";
 }

 function positionieren() {
    var offset=0;
    var alt;
    
    if(document.body.clientWidth>911) offset=Math.round((document.body.clientWidth-911)/2)+offset;

    for(i=0;i<document.getElementsByTagName('div').length-1;i++) {
       alt=parseInt(document.getElementsByTagName('div')[i].style.left.substr(0,document.getElementsByTagName('div')[i].style.left.length-2));
       document.getElementsByTagName('div')[i].style.left=(alt+offset)+"px";
       document.getElementsByTagName('div')[i].style.display="inline";
    }
 }
 
 function data2form(c) {
    parent.location.href="cms/index.php?selected="+f+"&container="+c;
 }
