
function a(el, val)
{
 if(val == 'i')
   el.style.backgroundColor='eedd77';
 else
   el.style.backgroundColor='eeee00';

}

function m(el, val)
{
 if(el.style == null) return;

 if(val == 'i')
   el.style.backgroundColor='dddddd';
 else
   el.style.backgroundColor='eeeeee';

}


function g( url )
{
 window.location.href = url;
}
