var d = document;
function GEByID(id) { return d.all ? d.all[id] : d.getElementById(id); }
function hmDivOn(id) { id.style.visibility = 'visible'; id.style.display = 'block'; }
function hmDivOff(id) { id.style.visibility = 'hidden'; id.style.display = 'none'; }
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) { e = GEByID(id); e.style.visibility = 'hidden'; e.style.display = 'none'; }
function hmOn(id,parent,leftShift,hmVertShift) { e = GEByID(id); e.style.left = hmx(parent)+leftShift; e.style.top = hmy(parent)+hmVertShift; e.style.visibility = 'visible'; e.style.display = 'block'; }
