/* ***********************
       Get Element Position
    *********************** */
function getDim(el)
{
    var lw=el.offsetWidth;
    var lh=el.offsetHeight;

    for (var lx=0,ly=0;
         el!=null;
         lx+=el.offsetLeft, ly+=el.offsetTop, el=el.offsetParent);
    return {x:lx,y:ly,w:lw,h:lh}
}
