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.left = hmx(parent); e.style.top = hmy(parent)+hmVertShift; e.style.visibility = 'visible'; }
