function show(id)
{
 o = document.getElementById(id);

 if (o.style.display != 'none')
	 o.style.display = 'none';
 else
	 o.style.display = '';
}

function showWeather(id)
{

  for (i=0; i<7; i++)
  {
    o = document.getElementById('tab_'+i);
    if (i == id)
      o.style.display = '';
    else
      o.style.display = 'none';

    o = document.getElementById('control_'+i);
    if (i == id)
       o.style.backgroundColor = '#AAAAAA';
    else
       o.style.backgroundColor = 'white';
  }
}