function item_on(id) { var item = null; if(id.substr(0, 2)=='ll') { if(typeof(item_cur) != 'undefined') item = item_cur; } else if(typeof(itemt_cur) != 'undefined') item = itemt_cur; if(item) document.getElementById(item).style.backgroundColor='#FFF'; document.getElementById(id).style.backgroundColor='#F4B2B4'; } function item_off(id) { var item = null; if(id.substr(0, 2)=='ll') { if(typeof(item_cur) != 'undefined') item = item_cur; } else if(typeof(itemt_cur) != 'undefined') item = itemt_cur; if(item) document.getElementById(item).style.backgroundColor='#F4B2B4'; document.getElementById(id).style.backgroundColor='#FFF'; }