function checkOn(obj)
{
if( obj.style.backgroundColor=="" && arguments.callee.checked==0)
{
arguments.callee.checked=1;
obj.style.backgroundColor = "lightsteelblue";
}
else if(obj.style.backgroundColor == "lightsteelblue")
{
arguments.callee.checked=0;
obj.style.backgroundColor = "";
}
}
checkOn.checked=0;//вводим как свойство функции, флаг, символизирующий выделенность какого-нибудь объекта