var d = document;
function GEByID(id) { return d.all?d.all[id]:d.getElementById(id); }
function hmDivOn(id) { id.style.visibility = 'visible';}
function hmDivOff(id) { id.style.visibility = 'hidden';}
function hmx(e) { return e.offsetLeft+(e.offsetParent!=null&&e.tagName!='BODY'?hmx(e.offsetParent):0);}
function hmy(e) { return e.offsetTop+(e.offsetParent!=null&&e.tagName!='BODY'?hmy(e.offsetParent):0);}
function hmOff(id,parent) { e = GEByID(id); e.style.visibility = 'hidden';}
function hmOn(id,parent) { e = GEByID(id); e.style.width=parent.offsetWidth+12; e.style.left = hmx(parent)-6; e.style.top = hmy(parent)+hmVertShift; e.style.visibility = 'visible'; }
function drowOverBg(tr) { tr.bgColor = hoverColor;}
function drowOutBg(tr) { tr.bgColor = color; }
