function menu_cell_toggle(src,is_on)
{
	if(is_on)
   {
		src.style.backgroundColor="#C1D2EE";
		src.style.borderColor="#316AC5";
   }
   else
   {
		src.style.backgroundColor='transparent';
		src.style.borderColor="#F4F4Ef";
   }
}

function button_toggle(src,is_on)
{
	if(is_on)
   {
		src.style.backgroundColor="#d5e7f4";
		src.style.borderColor="#4af";
   }
   else
   {
		src.style.backgroundColor="#C1D2EE";
		src.style.borderColor="#316AC5";
   }
}

function tab_hilite(src)
{
	var sel="tab_"+tab_selection;
 	if(src.id==sel) return;
	src.style.backgroundColor='#E0E8FF';
}

function tab_restore(src)
{
	var sel="tab_"+tab_selection;
 	if(src.id==sel) return;
	src.style.backgroundColor='transparent';
}


