var TR_OVER_COL = '#efefef';

function setHot(midx,hot) {
 oTD = document.getElementById('item' + midx);
 //oTD = eval('item' + midx);
 //if ((!oTD) && document && document.body) oTD = document.getElementById('item' + midx);
 //if (!oTD) return;
 if (oTD && oTD.style && hot) oTD.style.backgroundColor='#2222AA';
 else if (oTD && oTD.style) oTD.style.backgroundColor='';
}

function navSelect(oSelect) {
 l = oSelect[oSelect.selectedIndex].value;
 oSelect.selectedIndex = 0;
 if (l != '-') location.href = l;
}

