
function bdSetStyle(el,attr,value){
    el.style.setAttribute(attr,value);
}

function bdMoveRow(table,tr,moveTo){
    table.moveRow(tr.sectionRowIndex, moveTo);
}

function menuPosLeft(obj){
    return obj.offsetLeft + obj.parentNode.offsetLeft + 5;
}